在我的模型目录(模型属于/ api / post)内,有Post.js
和Post.settings.json
。我在title
中创建了一个属性Post.settings.json
,在Post.js
中,我有:
beforeCreate: async (model, attrs, options) => {
console.log(model.attributes.title);
};
我不知道为什么会给我一个错误error TypeError: Cannot read property 'title' of undefined
。有人知道吗?预先感谢!
答案 0 :(得分:0)
您将通过attrs.title
答案 1 :(得分:0)