我在我的科爾多瓦應用程序中有傳出請求的一些問題。 既不ajax請求的工作,也不包括這樣的圖像:<img src="http://www.bing.com/s/a/hpc14.png">
。ajax請求問題(科爾多瓦)
config.xml文件:
<plugin name="cordova-plugin-whitelist" version="1" />
<access origin="*" />
<allow-navigation href="*" />
<allow-intent href="*" />
<content src="index.html" />
app.js:
$.ajax({
url: "http://domain.xyz",
type: "post",
data: { "uuid": device.uuid },
dataType: "json",
success: function(json){
alert('it works');
},
error: function(e){
alert("status: "+e.status);
}
});
這將返回送花兒給人status: 0
你能幫助我嗎?
你可以告訴我們你正在使用哪個版本的Cordova,你在ajax請求中試過了''''cordova -version''' –
你試過了'dataType:「jsonp」嗎? –
@Simon我正在使用版本5.3.3 – moerphy