Angularjs,angular-1.2.0-rc.2
$http.get("gridData.json")
.success(function(data, status, headers, config){
angular.extend($scope.model.entities, data.entities);
})
.error(function(data, status, headers, config){
alert("x");
});
当从服务器加载页面时,或者使用 firefox 或 chrome 在本地磁盘上运行页面时,此代码运行得非常好。但是在 IE9 中从磁盘加载页面时(在其他 IE 版本中未测试),它总是进入错误功能。调试时,发生错误时,数据,状态,标题都是未定义的,除了配置有内容。
有人知道吗?有什么解决办法吗?