Skip to content

Instantly share code, notes, and snippets.

@gokatz
Forked from RakChamp25/controllers.controller.js
Last active June 25, 2019 07:01
Show Gist options
  • Save gokatz/b5a7d0a9da3bd50d11301e7cbfc6e75a to your computer and use it in GitHub Desktop.
Save gokatz/b5a7d0a9da3bd50d11301e7cbfc6e75a to your computer and use it in GitHub Desktop.
Object Array Not Updated
import Ember from 'ember';
import {set} from '@ember/object';
import { A } from '@ember/array';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
apiObj: [
{ arr : A(['s'])},{ arr : A(['s'])},{ arr : A(['s'])}
],
actions: {
change(obj,index) {
let newObj = obj;
// set(obj, 'arr', A(['x']));
newObj.arr.pushObject('g');
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
{{#each apiObj as | obj index|}}
<b {{action "change" obj index}}>{{obj.arr}}</b>
{{#each obj.arr as |arr|}}
"-{{arr}}"
{{/each}}
<br>
{{/each}}
{
"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