$.mobile.changePage('#id') not working after ajax call in IOS 9

时间:2015-10-06 08:38:42

标签: ios cordova navigation

$.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.

2 个答案:

答案 0 :(得分:0)

尝试使用此库。在摘要问题上为我工作。

https://gist.github.com/IgorMinar/863acd413e3925bf282c

答案 1 :(得分:0)

如果您要在xcode中编译代码,则可能需要检查应用传输安全性(ATS)并更改设置。此问题是iOS9更新的结果。 然后,您需要编辑info.plist文件并添加以下内容:

<key>NSAppTransportSecurity</key> 
<dict> 
   <key>NSAllowsArbitraryLoads</key><true/>
</dict>

我希望这有帮助!