我有两个应用程序:
1.在实例X Web服务器1-http://localhost:8080/Route.Js
因此,从应用程序1,Js文件中,我们需要决策过程来发送/重定向到有角度的应用程序。我尝试了以下选项。
选项1:
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://localhost:4200/Primary", true);
xhr.withCredentials = true;
xhr.send();
选项2:
jQuery.ajax({
url : "http://localhost:4200/Primary",
type : "POST",
cache : false,
async : false,
success : function(data, textStatus, jqXHR)
{
alert("sucess..");
},
error : function(jqXHR, textStatus, errorThrown)
{
alert("failure..");
}
});
Option2引发以下错误:
XMLHttpRequest:网络错误0x80070005,访问被拒绝。
我在网上尝试了很多,但现在确定如何解决此问题? 预先感谢