如何知道事务提交何时失败?
var obj = App.store.findAll(App.Todo).get('firstObject');
var t = App.store.transaction();
t.add(obj);
obj.set('summary','New Summary');
t.commit();
// 403 or 401 is returned from the server (request failed)
a.get('isLoading'); // true
a.get('isError'); // false
用例:我希望用户看到他的操作(保存对象)失败。