我希望exampleFunction
每次“exampleProperty”更改时都调用该函数。我应该如何设置?似乎这种情况最近发生了变化。我正在使用 1.0.0-RC1。
模板:
<div id="container">
{{view Ember.TextField valueBinding="exampleProperty"}}
</div>
控制器:
ExampleApp.ApplicationController = Ember.Controller.extend({
exampleProperty: "example",
exampleFunction: function() {
console.log("exampleProperty was changed");
}
});