如下所示,如果$scope.equipments=...那一段,放在$.post里就不能绑定到$scope.equipments上,如果放在外面就可以,这是为什么?
mainApp.controller('equipmentsController', function($scope, $http) {
$.post("getAllDeviceList.action",
{},
function(response){
$scope.equipments = [ {
"id" : "1",
"name" : "equipment01 ",
"number" : "11"
}, {
"id" : "2",
"name" : "equipment02 ",
"number" : "22"
}, {
"id" : "3",
"name" : "equipment03 ",
"number" : "33"
} ];
}
);
$scope.equipments = [ {
"id" : "1",
"name" : "equipment01 ",
"number" : "11"
}, {
"id" : "2",
"name" : "equipment02 ",
"number" : "22"
}, {
"id" : "3",
"name" : "equipment03 ",
"number" : "33"
} ];
}
经过@lee1994522 的提醒,意识到如果用了$.post方法,那么
脱离了angular的上下文
,所以无法绑定到angular的$scope里。解决办法有两个:
$.post
第一个诚如@lee1994522所说,直接在$.post的回调函数的最后加上一句
$scope.$apply()
,把改变同步绑定到视图上$http.post
AngularJS - Any way for $http.post to send request parameters instead of JSON
全局里定义:
然后控制器里面写:
搞不懂楼主用$.post的意义。你注入$http又有何意义
你的
$.post
不是angular
的方法,所以实际上post的回调虽然执行了,但angular
在视图上却不知道这件事。你可以在$.post
里的赋值操作后面再跟一句$scope.$apply();
,那个赋值操作就生效了。