0
進出口使用angularjs。角服務不MVC返回值
這裏我Controller.js:
//Get User By ID
$scope.GetUserById = function (UID) {
var Get = UserService.GetUserById(UID);
Get.then(function (response) {
$scope.User = response.data;
alert($scope.User.Address);
});
};
services.js:
//Get By ID
this.GetUserById = function (UID) {
debugger;
return $http.get("../api/UsersData/GetUserById?UID=" + UID);
};
當我使用調試器時,會顯示警告信息。如果我沒有調試,那麼它不會返回一個值。
什麼是我的代碼的問題?
如何顯示值html頁面?
嘗試添加 '返回$ scope.User;'或'return response.data;'警報之後。 – rrd
也嘗試實現返回諾言的'錯誤功能'。 – ricky
沒有ü嘗試使用回調函數 –