-1

我正在尝试在我的混合应用程序中进行 api 调用,framework7 Dom7 当我在浏览器上进行测试时,它工作得很好,但是当我在手机上为 android 的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');
});
});

我得到 tilAPI calling但不是GOT THE RESPONSE消息。

4

1 回答 1

0

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

于 2015-10-06T11:27:41.643 回答