我的应用程序的 iOS 版本似乎根本不想连接到互联网。有人可以指出我正确的方向吗?
我已将我尝试连接的地址添加到白名单中。虽然我不确定从哪里开始,因为这是我的第一个 iOS 应用程序。我不确定是否在我没有看到的地方产生了错误。
该应用程序构建良好,并被推送到模拟器和物理 iPhone。它适用于模拟器。iPhone 有连接并且可以浏览网页,所以我知道这不是问题。
让我知道您可能还需要什么帮助,因为我不确定我需要提供什么。
编辑
下面的脚本使用backbone.js 模型将用户登录到系统,该模型向服务器发送ajax 请求。这在 Android Build 上运行良好。
App.user = new App.model.user({
'email' : $(event.currentTarget).find('#email').val(),
'password' : $(event.currentTarget).find('#password').val()
});
用户模型:
App.model.user = Backbone.Model.extend({
defaults : {
"email" : null,
"password" : null,
},
initialize : function () {
this.save(null, {
success : function (model, response) {
App.loggedIn = true;
App.navigate("menu", {
trigger : true,
replace : true
});
App.menu();
},
error : function (model, response) {
try {
App.mainView.error(response.resultMessage);
} catch (e) {
console.log(e);
}
},
wait : true
});
},
urlRoot : App.config.siteUrl + "/gateway/user"
});