Framework7版本:Framework7 3.1.1
我正在使用组件模板
我尝试了解决方法,但当前页面无法刷新
解决方案1:
sudo cat /var/log/secure | grep sshd
当我管理页面名称并单击以打开单页时,它返回“ null”,然后应用程序无法正常工作。
解决方案:2
instance-1 sshd[1192]: Server listening on 0.0.0.0 port 23.
instance-1 sshd[1192]: Server listening on :: port 23.
但是我收到错误消息:“未捕获(承诺)ReferenceError:未定义currentRoute”
我也尝试
app.on('pageInit', function (page) {
if (page.name === 'single-question') {
var mainView = app.view.create('#single-page');
mainView.router.refreshPage();
}
但仍然面临相同的问题。
答案 0 :(得分:1)
我认为您需要以此刷新页面:
self.app.router.navigate(app.views.main.router.url, {reloadCurrent: true});
答案 1 :(得分:0)
您可以使用此刷新整个页面
setTimeout("location.reload(true);",1000);