我无法从cordova应用程序向托管在AWS端口5000上的python后端发出请求(试图通过jquery ajax从javascript访问它)。 我想访问http://MY_AWS_IP:5000,但要获得readyState 0,也可以访问heroku https://reqres.in/api/users/2上托管的API。 要求您的帮助。预先感谢。
关于, 安奇
$.ajax({
type: 'GET',
//url: 'https://reqres.in/api/users/2',
url: 'http://MY_AWS_IP:5000',
contentType : false,
processData : false,
success: function(response){
console.log(response);
alert('success'+ response);
},
error: function(xhr, status, error){
console.log(xhr.readyState);
alert(xhr.readyState);
}
});