如果应用启动时已登录页面,我正在尝试重定向页面。
if (!iSLoggedIn()) {
mainView.router.loadPage({ url: 'index.html', ignoreCache: true, reload: false });}else {
$('#txtUserName').html(localStorage.getItem("fullname"));
mainView.router.loadPage({ url: 'dashboard.html', ignoreCache: true, reload: true });}
问题是当我启动应用程序时,我正在按条件重定向页面,但行为不正常。重定向后没有事件或功能不起作用。但是当我再次从其他页面回到那里时,它可以正常工作。尝试了很多方法但是没有用。 我正在使用framework7。
答案 0 :(得分:0)
据我所知,页面代码无法快速加载。所以我用了超时一秒钟。现在工作正常