您好,我使用的是 cordova 11.0.0 版。
我發現在 www 目錄中的網頁如果有使用到 jquery 的 ajax post 呼叫都會失效。
例如以下程式碼 :
$.ajax({
method: 'POST',
url: 'http://192.168.1.3/plant_ajax/',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
dataType: "json",
data: {RegID:1},
retryCount: 3,
success : function(response) {
console.log(response);
},
error : function(err){
console.log(err);
}
});
我在 Android 的 ADV 模擬器中用 chrome 瀏覽器 直接在網址列輸入 http://192.168.1.3/plant_ajax/ 這一段網址是有資料回應的。
但是在 cordova build android 建置好 android apk 之後,執行 cordova run android 在 ADV 中執行,卻都會發生
以上那一段程式碼無法連線到 http://192.168.1.3/plant_ajax/
似乎在 cordova 的 android 應用程式中無法使用 jquery 的 ajax 呼叫。
請問是否有解決方式?
感謝您的回覆。