我需要以某种方式将元数据存储在 can.Model 我使用 findAll 方法并接收这样的 JSON:
{
"metadata": {
"color": "red"
},
"data": [
{ "id": 1, "description": "Do the dishes." },
{ "id": 2, "description": "Mow the lawn." },
{ "id": 3, "description": "Finish the laundry." }
]
}
我可以使用can.Model.List 之类的数据,但我需要静态属性之类的元数据。