0

创建新记录/模型时出现以下错误:

Uncaught Error: Attempted to handle event `willSetProperty` on <App.NewsItem:ember361:null> while in state rootState.loaded.created.inFlight. Called with {reference: [object Object], store: <App.Store:ember299>, name: bodyHTML}

这是什么意思?

4

2 回答 2

1

似乎是由于应用程序App.NewsItem在保存类型模型的实例时更新了属性(称为“bodyHTML”)(rootState.loaded.created.inFlight)。我不知道为什么我会收到创建错误。

于 2013-03-26T20:36:44.240 回答
0

似乎您正在修改现有的脏对象,或者您正在尝试将某些属性设置为未定义

http://coryforsyth.com/2013/06/10/the-willsetproperty-gotcha-in-ember-data-understanding-the-state-machine/

于 2014-03-07T11:03:16.610 回答