Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/ember.js/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ember.js EmberJs-IE8未触发selectionBinding更新_Ember.js - Fatal编程技术网

Ember.js EmberJs-IE8未触发selectionBinding更新

Ember.js EmberJs-IE8未触发selectionBinding更新,ember.js,Ember.js,下面的代码在chrome中运行良好,我在控制器中有一个可观察的属性 {{view Ember.Select prompt="--ANY--" selectionBinding="GWVideoApp.VideosController.category" contentBinding="GWVideoApp.TagsController.categories" optionLabelPath="content.title" optionValuePath="content.title"}}

下面的代码在chrome中运行良好,我在控制器中有一个可观察的属性

{{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似乎没有更新,因为它与Ember.Checkbox valueBinding有相同的问题。
将jQuery从1.6.4升级到1.7.2解决了这个问题

我一定会按照@rBull的建议尝试升级jQuery。