我想知道ember-data中的记录何时成功保存,就像我成功地知道它已经变得无效一样:
exercise.one 'becameInvalid', (result) ->
WZ.Utils.generateErrorSummary.call(exercise)
我原以为ranValid会以同样的方式行事:
exercise.one 'becameValid', (result) ->
WZ.Utils.notify 'Exercise created!'
显然它没有,它不会以同样的方式被触发。
应该吗?