0
我必須做出HTTPS在JavaScript函數,我通過使用ScriptNotify UWP應用程序調用調用SSL錯誤,如何讓jQuery的HTTPS調用,而忽略UWP應用
function testHttpsCall() {
try {
$.ajax({
type: "GET",
url: "https://differentdomain.com/test/12",
success: function(data, status, xhr) {
console.log(data);
},
error: function(error) {
console.log(error);
},
complete: function() {
console.log("Comes here");
}
});
} catch (error) {
console.log(error);
}
}
它不是來到請求中的任何一個代碼塊,因爲我無法調試移動設備上的混合應用程序我無法找到問題。
@ Marcin是在該服務器上啓用了CORS – John
那麼您面臨的確切錯誤是什麼? –
那就是我無法知道的 – John