Overwrite DS.Store ember-cli

馋奶兔 提交于 2019-11-30 08:55:45

问题


I have some code that needs to run on store.init.

I tried extending the default store in app/store.js, ember-cli seems to pick it up as a store, but the object in this.store is not a store

My store definition:

import DS from 'ember-data';

export default DS.Store.extend({
  init:function(){
    console.log('watatLoL')
  }
});

回答1:


According to Peter Wagenet, this has changed in Ember Data beta 19. If you're using that version or later, the file is now app/stores/application.js (or app/application/store.js if you're using pods).

Overwriting the store is the same, only the file name/location has changed. If you're using a version of Ember Data lower than beta 19, you can use the old app/store.js file.


I know this is old, but I had to answer this for another question, so I figured I would update this. By default, the Ember-CLI resolver will look for app/store.js, so you can declare your overridden store there.

// app/store.js

import DS from 'ember-data';

export default DS.Store.extend({
    init: function() {
        console.log('Using custom store!');
        return this._super.apply(this, arguments);
    }
});



回答2:


The answer for > Ember 1.13:

The Store now extends the Service so we can just create the app/services/store.js and put the following code to extend/customize the store:

// app/services/store.js
import DS from 'ember-data';

export default DS.Store.extend({

  init: function() {
    console.log('Using custom store!');
    return this._super.apply(this, arguments);
  }
});

Here's a sample twiddle



来源:https://stackoverflow.com/questions/25493561/overwrite-ds-store-ember-cli

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!