我在我的应用程序中指定了以下设置,但应用程序没有超时?
timeout: 60000 ,
heartBeatIntervalInSecs: 5 * 60
我已经修改了我的代码,并在连接断开时尝试重新加载应用程序。它要求用户重新加载或关闭应用程序。但是这两个功能都不能正常工作。该事件被正确触发,但指定的库函数在此处未按预期工作。关闭功能只是将 App 带到后台并杀死 App 进程。
onConnectionFailure: function (){
WL.SimpleDialog.show("Communication Failure", "An unexpected server connection error has occurred. Please try again later.",
[{text : 'Reload', handler : function () { WL.Client.init(wlInitOptions); }} , {text : 'Close',handler : function () { WL.App.close(); } } , ]); }
还有什么我必须设置的吗?
谢谢