2

夹具适配器有提交方法吗?它有什么作用?据我了解,store.commit()与 REST 适配器一起使用时会调用 API。

我可以将isLoaded属性与夹具适配器一起使用吗?

基本上,我的控制器中有 2 条记录称为xy一个属性内容,其中包含许多y类型的记录。咖啡代码如下:

someMethod: (->
  content.removeObject(y)
).('x.isLoaded')

anotherMethod: ->
  //modify x
  Application.store.commit()

当我调用anotherMethod它时,它会更新x并在商店运行提交,因此someMethod会被调用。我的实际应用程序运行良好,但在测试的情况下会从内容和存储someMethod中删除记录。y是不是用于夹具数据存储isLoadedcommit

4

1 回答 1

8

是的,有一个提交方法,它可以通过DS.Store或 DS.Transaction 访问。

这是一个小提琴,它有一些很好的代码,可以快速演示带有固定装置的 CRUD。

window.App = Ember.Application.create();

App.store = DS.Store.create({
    revision: 4,
    adapter: 'DS.fixtureAdapter'
});

App.Person = DS.Model.extend({
    id: DS.attr('number'),
    name: DS.attr('string')
})

App.Person.FIXTURES = [
    {id: 1, name: 'Fixture object 1'},
    {id: 2, name: 'Fixture object 2'}
];

App.people = App.store.findAll(App.Person);
App.store.createRecord(App.Person, {id: 1, name: 'Created person'});

App.personView = Em.View.extend({
    isVisibleBinding: 'notDeleted',
    notDeleted: function() {
        return !this.getPath('person.isDeleted');
    }.property('person.isDeleted').cacheable(),

    remove: function () {
      this.get('person').deleteRecord();
    }
});
于 2012-10-23T16:48:17.337 回答