ajax没有在构建版本

时间:2015-10-06 11:23:32

标签: javascript ajax cordova html-framework-7

我正在尝试使用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消息。

1 个答案:

答案 0 :(得分:0)

您正在页面的标题中添加jQuery或jQueryMobile库..?