$.mobile.changePage('#id') is not working after calling web service using AJAX, we received response but screen can't navigate to other screen using Cordova 5.1.1.
答案 0 :(得分:0)
尝试使用此库。在摘要问题上为我工作。
答案 1 :(得分:0)
如果您要在xcode中编译代码,则可能需要检查应用传输安全性(ATS)并更改设置。此问题是iOS9更新的结果。 然后,您需要编辑info.plist文件并添加以下内容:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key><true/>
</dict>
我希望这有帮助!