本文介绍了在主干中获取/collection/id 而不加载整个集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法加载 Backbone 集合的单个实体(从服务器)?
Is there a way to load a single entity of a Backbone collection (from the server)?
Backbone.Collection.extend({
url: '/rest/product'
});
以下代码可以使用 collection.fetch()
加载整个集合,但如何加载单个模型?Backbone 的文档 明确说GET
可以做到/collection[/id]
但不是如何.
The following code can load the entire collection with a collection.fetch()
but how to load a single model? Backbone's documentation says clearly that GET
can be done /collection[/id]
but not how.
推荐答案
虽然我们设置
url:"api/user"
对于集合,模型的等价物是
for the collection, the equivalent for the model is
urlRoot:"api/user"
这将使主干在您 fetch() 时自动附加/id
this will make backbone automatically append the /id when you fetch()
这篇关于在主干中获取/collection/id 而不加载整个集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!