我正在使用Titanium Mobile框架为iPhone开发应用程序。
我遇到了关于为ACS(Appcelerator Cloud Service)API调用设置超时的问题,因此如果网络不够强大,应用程序就不会挂起。
我该怎么做?我阅读了文档,但找不到与此相关的内容。
以下是我的代码。
Cloud.Objects.query({
classname: 'MyScores',
page: 2,
per_page: 5,
}, function (e) {
if (e.success) {
}
else {
}
});