Skip to content

Instantly share code, notes, and snippets.

@JennieJi
Last active January 20, 2017 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save JennieJi/3da809193fd5a5f9a032a9603868f151 to your computer and use it in GitHub Desktop.
Save JennieJi/3da809193fd5a5f9a032a9603868f151 to your computer and use it in GitHub Desktop.
Wierd behavior with each
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
length: 6,
originalVal: '',
arrayVal: Ember.computed('originalVal', function() {
const origin = this.get('originalVal').toString();
const len = this.get('length');
let arr = new Array(len);
for (let i = 0; i < len; i++) {
arr[i] = origin.charAt(i) || '';
}
return arr;
})
});
<p>Input string please(max {{length}} chars): {{input value=originalVal maxLength=length}}</p>
<p>Conversed string: {{arrayVal}}</p>
{{#each arrayVal as |v index|}}
<p>{{index}}:{{v}}</p>
{{/each}}
{
"version": "0.10.7",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.10.0",
"ember-data": "2.10.0",
"ember-template-compiler": "2.10.0",
"ember-testing": "2.10.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment