Skip to content

Instantly share code, notes, and snippets.

@RakChamp25
Forked from gokatz/controllers.application.js
Last active July 3, 2019 05:50
Show Gist options
  • Save RakChamp25/7ee36e230a8b3e74f254880d209930ab to your computer and use it in GitHub Desktop.
Save RakChamp25/7ee36e230a8b3e74f254880d209930ab 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 : ['s']},{ arr : ['s']},{ arr : ['s']}
],
actions: {
change(arr,index) {
this.set('arr',arr);
let newArr = new Array(arr);
newArr.push('g');
this.set('arr',newArr);
console.log(this.arr, arr);
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
{{#each apiObj as | obj index|}}
<b {{action "change" obj.arr index}}>{{obj.arr}}</b>
<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