6

我在绑定 emberjs 时遇到问题。我已将 ember 文本字段绑定到控制器内的变量。当我写入文本字段时,绑定变量会正确更新。

现在我想通过 JS 更改变量(以及文本字段中的文本)。当我这样做时,什么也没有发生。

App = Ember.Application.create({});

App.FormInfo = Em.TextField.extend({
    insertNewline: function(){
        App.AController.clear();
    }
});

App.AController = Em.ArrayController.create({
    content: [],
    name: '',
    clear: function(){ //I want this function to clear the text field and set name to an empty string
        this.name = '';
        console.log(this.name);//expected empty string; actual user input
    }
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://cloud.github.com/downloads/emberjs/ember.js/ember-0.9.5.min.js"></script>
<script type="text/x-handlebars">
    {{view App.FormInfo placeholder="Name" valueBinding="App.AController.name"}}
</script>

4

1 回答 1

12

你需要set像这样使用

this.set('name', '');

而不是你在做什么。

this.name = '';

KVO/Binding 的东西只有在你使用兼容的方法时才会发生;这就是为什么这些方法首先存在的原因。

这是一个工作小提琴。

于 2012-07-02T21:32:27.763 回答