angularjs jsonp怎么传参数
发布网友
发布时间:2022-04-22 23:31
我来回答
共1个回答
热心网友
时间:2022-04-23 01:01
var userName = jack ;
$http({
method : 'POST',
url : '需要提交数据的 接口',
params :{ userName: userName },
headers : { 'Content-Type': 'application/x-www-form-urlencoded' }
}).success(function(response){
//回调函数
})