Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过流星创建了一个小应用程序。当我在本地主机上运行应用程序时,它运行良好。但是,当我从远程笔记本电脑或台式机访问该应用程序时,该应用程序不会重定向到应用程序的下一页。
我已经使用命令重定向:
$('#right2').html(Meteor.ui.chunk(Template.MessageInboxDetails));
请您给点建议好吗?
我认为ui.chunk现在已弃用。
ui.chunk
我通常不喜欢通过将模板填充到 dom 中来进行页面路由。
考虑一下:
{{{display_page}}} Template.whatever.display_page = function() { return Template[Session.get("current_page_id")]() }
现在您所要做的就是在您的活动中设置会话以路由到新页面