我用来can.Component
在页面上显示 JSON。
can.Component.extend({
tag: "some-app",
scope: {
items: new Items.List({}),
displayedItems: function () {
...
return items;
}
},
helpers: {
...
},
events: {
"{Items} created": function (Items, ev, newItem) {
...
}
}
})
如何将收到的 JSON(如下)的“元”部分提供给作用域或助手?
{
"data": [
{
"description": "Some text",
"id": 1,
"measurement": "pcs",
"name": "Name of item",
"resource_uri": "/api/v1/item/1/"
},
{....}, {....}
}
],
"meta": {
"limit": 20,
"next": null,
"offset": 0,
"previous": null,
"total_count": 3
}
}
我可以在控制台中使用Items.findAll().then(function(info){console.log(info.attr('meta'))})
,但我是(可以。)js 中的菜鸟,无法理解如何在我需要的地方获得它。