我有一个环回的模型,我不想坚持到数据库。看起来(差不多)像这样:
{
"name": "Contact",
"base": "Model",
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string"
}
}
}
现在,我如何实例化这样的模型?我可以这样做:
var contact = new app.models.Contact()
如果可以的话,这是正确的方法吗?非常感谢帮助。
安德烈
答案 0 :(得分:0)
是的,这是构建模型实例的正确方法。
如果您想继续使用:contact.save()