我有一个在 Cefglue .Net 浏览器控件中运行的小角度应用程序。浏览器可以正常访问并加载应用程序,但后台的 XHR GET 请求被取消并且永远不会到达服务器。
该应用程序和 node.js 网络服务都位于 https 地址,所以我知道那里不存在跨域问题。
我最初在没有 SSL 的情况下构建和测试了该应用程序,它运行良好。
Angular.js 版本 1.2.5
相关代码:
$http({
url: BaseUrl + '/conversations/' + $scope.conversation.id,
method: 'GET',
headers: reqHeaders
}).then(function(data){
//success
},function(errData){
//nope
});
};