问题描述
- angularJS jsonp的请求带参数
-
myUrl = "http://localhost:8090/api/testcallback=JSON_CALLBACK";
$http.jsonp(myUrl).success(
function(data){
alert(data);
}
);
当请求的地址为:http://localhost:8090/project/login?name=aaa&password=123456,应该怎么改 ?
解决方案
myUrl = "http://localhost:8090/project/login?name=aaa&password=123456&testcallback=JSON_CALLBACK";
时间: 2024-12-30 18:32:59