Ember.jsで何かを理解できません。プロパティが含まれていますが、それを表示するには{{view.property}}を実行する必要があります。なぜ、{{property}}を単純に使用できないのですか?
次の例では、{{view.test}}のみが表示されます。
ビューをデフォルトのスコープにすべきではありませんか?
index.html:
<script type="text/x-handlebars" data-template-name="places">
{{test}} {{view.test}}
</script>
app.js:
App.PlacesController = Ember.ArrayController.extend({
});
App.PlacesView = Ember.View.extend({
templateName: 'places',
test: 'test'
});