我有一个模型,当我这样做时,我会model.attributes.model
看到模型的属性。一个属性是name
,因此model.attributes.model.name
返回正确的名称。但是,当我这样做时,model.get('name')
我会得到我在模型中设置的默认值。
如何设置模型的所有属性以使其适用get
?
用于构建模型的 JSON
[{
"model":{
"name":"My name",
"description":
"Description goes here!",
"vote_score":null
},
"context":{}
}]