以下是我的javascript函数。我试图从浏览器中调用它。它正在发挥作用。但是当我从android webview调用它时,我没有得到任何数据。我在android清单中给了网络许可。请帮帮我。
function getFileList(){
$("#content").html("<h3>file list:</h3>");
$.getJSON("http://192.168.1.173:8081/StockTaking/listStock.jsp"+ "?rdm=" + Math.random(),
function(data){
$.each(data.filelist,function(i,val){
$("#content").append("<p>"+data.filelist[i]"</p>");
});
});
}
答案 0 :(得分:0)
您需要允许包含白名单的网址
答案 1 :(得分:0)
经过多次尝试,我通过在manifest.xml中将android targetSdkVersion从17更改为15来获得它。