我正在尝试从 textArea 更新一个数组,其中的每一行都是一个新项目。这是我尝试做的,但 textArea 不更新数组:
车把:
<script type="text/x-handlebars">
{{view Ember.TextArea valueBinding="App.listController.formattedContent"}}
</br>
{{#each App.listController}}
{{this}}
{{/each}}
</script>
JavaScript:
App = Ember.Application.create({});
App.listController = Ember.ArrayController.create({
content: ['some', 'items', 'in', 'an', 'array'],
formattedContent: function() {
return this.get('content').join('\n');
}.property('content')
});
和jsFiddle 我知道它不可能那么简单,但我不知道从哪里开始。任何的想法?