在 youtube 教程中,我看到了另一种声明模型的方式:
model = Backbone.Model({
data:[
{text:"Google", href:"https://google.com"},
{text:"Facebook", href:"https://facebook.com"},
{text:"Youtube", href:"https://youtube.com"}
]
});
我的控制台日志抛出错误:
未捕获的类型错误:对象 # 没有方法“设置”
这是正确的方法吗?