2017-09-05 43 views
0

我必須做出HTTPS在JavaScript函數,我通過使用ScriptNotify UWP應用程序調用調用SSL錯誤,如何讓jQuery的HTTPS調用,而忽略UWP應用

我的域名前https://test.com/test/12

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); 
    } 
} 

它不是來到請求中的任何一個代碼塊,因爲我無法調試移動設備上的混合應用程序我無法找到問題。

回答

0

你應該幾乎從不嘗試聯繫不同的服務器,然後是你正在託管你的應用程序。在極少數情況下,當其他服務器必須明確允許您的頁面通過設置適當的CORS標頭來發出請求。

+0

@ Marcin是在該服務器上啓用了CORS – John

+0

那麼您面臨的確切錯誤是什麼? –

+0

那就是我無法知道的 – John