我们可以使用如下代码来实现AngularJS跨域访问以及与后台交互的问题:
$scope.loginAuthentication = function() {
$http({
method: "POST",
url: "http://xxxx:8080/sale/login/",
contentType: "application/json",
params: ({
"userAccount": $scope.useraccount,
"password": $scope.password
})
}).then(function successCallback(response) {
console.log("success:" + response.data.Name)
}, function errorCallback(response) {
console.log("error:" + response.data)
});
}
要实现跨域访问,百度了很多方法,然后偶然之间在url里加上了http,竟奇迹般的成功了。
遇到的第二个问题就是后台一直接收不到参数的问题。以前使用Ajax多了,传参数的时候,都是使用data
来传json数据。但是没想到的是在Angular中使用Param
来向后台传递
第三个问题就是使用无法使用后台的返回值,其实successCallback(response)
中response携带有多种返回数据,包括
data,header,config,status
这几种。我们最常用的就是data数据,因此需要response.data.Name
来获取返回的json数据。其他几种数据如何获取以后再补充
还是自己技术太菜,学习的时候学的东西太少