Skip to content

Instantly share code, notes, and snippets.

@amk221
Last active March 6, 2019 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amk221/343934d8c7b2c744a8a662d0847895bd to your computer and use it in GitHub Desktop.
Save amk221/343934d8c7b2c744a8a662d0847895bd to your computer and use it in GitHub Desktop.
each in
import Ember from 'ember';
class MyObject {
constructor(name) {
this.name = name;
}
}
export default Ember.Controller.extend({
items: {
'A': [new MyObject('one')],
'B': [new MyObject('two')],
'C': [new MyObject('three')],
'1.D': [new MyObject('four')]
}
});
{{#each-in this.items as |key value|}}
{{#if value.length}}
{{key}}<br>
{{#each value as |item|}}
&nbsp;&nbsp; {{item.name}}<br>
{{/each}}
{{/if}}
{{/each-in}}
{
"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