我正在尝试使用framework7 Dom7
在我的混合应用中进行api调用
当我在浏览器上测试时,它的工作非常好,但当我在我的手机上build online on phonegap用于安卓的APK
时。恢复所有JS在手机上工作但只有ajax调用没有被解雇。
$$('form.ajax-submit').on('submitted', function (e) {
e.preventDefault();
myApp.showPreloader();
var searchKey=$$("#search-key").val();
$$("#track").text('API calling');
$$.get("http://my/api/path/dev/apiv-1-0-2/students/"+searchKey,function(response){
$$("#track").text('got the response');
});
});
我得到API calling
但不是GOT THE RESPONSE
消息。
答案 0 :(得分:0)
您正在页面的标题中添加jQuery或jQueryMobile库..?