javascript – Ember.Select中的绑定操作

前端之家收集整理的这篇文章主要介绍了javascript – Ember.Select中的绑定操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何绑定Ember中的动作.选择só当用户更改类别时我可以执行其他操作:
{{view Ember.Select class="form-control" id="PackCategory"
            content=Categories
            optionValuePath="content.categoryId"
            optionLabelPath="content.name"
            value=VendingAdminController.selectedPack.categoryId}}

以及如何将视图指定为目标?

谢谢

解决方法

像主销建议,

只需在控制器中创建一个函数,即观察{{select}}的value属性

onSelectedPackChange:function(){
  //insert the code that needs to be excuted on change here
}.observes('selectedPack.categoryId')

上面的代码应该放在你的VendingAdminController中.

原文链接:/js/155362.html

猜你在找的JavaScript相关文章