0
나는 작업중인 웹 소켓 플러그인의 일부로 저장소에 함수를 추가하려고한다.Ember 응용 프로그램에서 DS.Store를 어떻게 확장 할 수 있습니까?
이 중 일부 (DS.Store)를 확장해야합니다.
다음 파일을 모두 넣어 보려고 시도했습니다. app/store.js
& app/stores/application.js
하지만이 방법은 작동하지 않습니다.
import DS from 'ember-data';
export default DS.Store.extend({
init: function() {
console.log('Using custom store!');
return this._super.apply(this, arguments);
}
});
다른 곳에 넣어야합니까?