AngularJS:使用$http请求后台(post和get方式)
程序员文章站
2022-03-02 13:48:54
...
1.声明
当前内容主要用于学习和使用AngularJS向后台传递数据,主要有两种post和get请求
2. demo
1.初始化app并传递$http,此时就可以使用$http
了
angular.module('myApp', []).controller('userCtrl', function($scope, $http) {});
2.使用get方式请求数据:
$http({
method: 'GET',
url: 'http://localhost:8080/selectUserAllUsingPage'
}).then(function successCallback(response) {
// 获取返回结果数据
var resultData=response.data;
$scope.users=resultData;// 为对象绑定数据
}, function errorCallback(response) {
// 请求失败执行代码
alert("请求访问后台数据失败!");
});
其中参数必须使用?参数名=参数值方式....
方式向后台传递参数
3.使用post方式请求并传递参数:
$http({
method: 'POST',
url: 'http://localhost:8080/insertUserSelective',
data:{
"userName":userName,
"loginName":loginName,
"loginPwd":loginPwd,
"userType":userType,
"userGroupId":userGroupId,
"home":home,
"email":email
}
}).then(function successCallback(response) {
// 获取返回结果数据
var resultData=response.data;
$scope.users=resultData;// 为对象绑定数据
initTableData(); // 再次请求数据
$("#msgSuccess").show();
}, function errorCallback(response) {
// 请求失败执行代码
alert("请求访问后台数据失败!");
});
此时post方式传递数据为:data:{}//对象数据
请求成功!
推荐阅读
-
postman的安装与使用方法(模拟Get和Post请求)
-
python的get和post方式请求详解
-
python通过get,post方式发送http请求和接收http响应的方法
-
postman的安装与使用方法(模拟Get和Post请求)
-
使用PHP Socket 编程模拟Http post和get请求
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
nodejs 使用http进行post或get请求的实例(携带cookie)
-
PHP如何使用cURL实现Get和Post请求
-
iOS开发网络篇—发送GET和POST请求(使用NSURLSession) - 转
-
使用HttpClient发送post和get请求三方接口