如何用JQUERY的ajax请求HTTPS的接口???

2024年11月22日 11:51
有3个网友回答
网友(1):

有跨越用Jsonp
var url = 'http://www.t1.com/index.php';
$.ajax({
type: 'post',
url: url,
data: {name:'wangyulu'},
dataType: 'jsonp',
success:function(result){
console.log(result);
}
});

网友(2):

哪个版本的?$.ajax({
method:"POST",
url : "https://61.178.60.214:8083/servlet/json?",
dataType: "json",
success: function(response) {
console.log(response);
},
error: function(data) {
console.log(data);
}
})

网友(3):

您好 不知道你明不明白 接口数据 只能get方式获取