我不确定这是否是它应该的方式,但是在调试我的主干应用程序时,我意识到我的模型在其 ID 属性中具有 API 的 URL,例如:
App.houseCollection.models[0]
Object
_callbacks: Object
_escapedAttributes: Object
_pending: Object
_previousAttributes: Object
_silent: Object
attributes: Object
changed: Object
cid: "c4"
collection: Object
id: "/api/v1/post/4/"
__proto__: Object
我有一条路由需要通过 ID 访问集合中的模型,即在此示例中只是数字 IDid = 4
做App.houseCollection.get('/api/v1/post/4/')
作品,但我希望能够做到App.houseCollection.get(4)
。