Skip to content

Instantly share code, notes, and snippets.

@CezaryH
Last active May 21, 2021 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save CezaryH/4fc11e3dce9ecc0e1cfbbbb006ffa1a1 to your computer and use it in GitHub Desktop.
Save CezaryH/4fc11e3dce9ecc0e1cfbbbb006ffa1a1 to your computer and use it in GitHub Desktop.
unload Issue
import DS from 'ember-data';
export default DS.RESTAdapter.extend({
host: 'https://jsonplaceholder.typicode.com'
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import Model from 'ember-data/model';
import attr from 'ember-data/attr';
import { belongsTo, hasMany } from 'ember-data/relationships';
export default Model.extend({
"userId": attr(''),
"title": attr(''),
"body": attr('')
});
import Ember from 'ember';
export default Ember.Route.extend({
async model() {
this._super(...arguments);
await this.store.findRecord('post', 1)
await this.store.unloadAll();
this.store.peekAll('post')
await this.store.findRecord('post', 1);
await this.store.findRecord('post', 2);
await this.store.unloadAll('post');
return this.store.peekAll('post');
}
});
import DS from 'ember-data';
export default DS.RESTSerializer.extend({
normalizeSingleResponse(store, primaryModelClass, payload, id, requestType) {
payload = {
post: payload
};
return this._super(store, primaryModelClass, payload, id, requestType);
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
{{#each model as |m| }}
title: {{m.title}} <br>
{{/each}}
<br>
<br>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment