我正在使用phonegap构建一个Android应用程序。我想从我的主机服务器检索xml数据到Android应用程序。我的XML文件:http://www.guitarmaddy.com/index.php?option=com_dmxmlexport&catid=8。我想获取所有标签内容并在phonegap应用程序中显示。
以前我用过:
(文档)$。就绪(函数(){
$.ajax({
type: "GET",
url: "www.guitarmaddy.com/index.php?option=com_dmxmlexport&catid=8",
dataType: "xml",
success: function(xml) {
alert("reading xml");
}
});
});
但它无法正常工作..警报信息未来...... 请建议我链接,我想知道检索xml数据的基础知识。
答案 0 :(得分:0)
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
$.ajax({
type: "GET",
url: "www.guitarmaddy.com/index.php?option=com_dmxmlexport&catid=8",
dataType: "xml",
success: function(xml) {
alert("reading xml");
}
});
}
这可以解决问题吗?