|
$.ajax({
type : "GET",
url : "http://api.feige.ee/SmsService/Send",
data : {
},
xhrFields : {
withCredentials : true
},
crossDomain : true,
dataType : "json",
success : function(data) {
debugger;
}
});
justep.Baas.sendRequest({
"url" : "http://api.feige.ee/SmsService/Send",
"async" : false,
"params" : {
},
"success" : function(result) {
}
});
用以上两种方法访问http,均报错:
|
|