Use custom helpers in Handlebars which are loaded from an api
问题 With ember-cli I use some handlebars which are loaded from an api. I'm using variables in the Handlebars templates, but now it would be nice to get render , bind-attr and a custom-helper working. // app/helpers/view-helper.js var ViewTemplateHelper = Ember.Handlebars.makeBoundHelper(function(template, context) { if (Ember.isEmpty(template)) { return; } else if (Ember.isArray(template)) { template = template.get('firstObject.value'); } else { template = template.get('value'); } context =