以下代码在chrome中工作正常我在控制器中有一个observable属性
{{view Ember.Select prompt="--ANY--"
selectionBinding="GWVideoApp.VideosController.category"
contentBinding="GWVideoApp.TagsController.categories"
optionLabelPath="content.title"
optionValuePath="content.title"}}
控制器:
category: {},
categoryDidChange: function() { this.recalcTags(); }.observes('category'),
但似乎IE8没有发生更新
答案 0 :(得分:1)
与Ember.Checkbox valueBinding有同样的问题。 将jQuery从1.6.4升级到1.7.2已经解决了这个问题