继续讨论 Gated Topics in Category:
我试图修改 gated 组件,将其重定向到特定页面,而不是显示一个 gate
1
我在主题创建者中尝试了 DiscourseURL.routeTo('/t/table-builder-test-2/1667'),它有效,但加载需要一段时间并会引发错误,尽管页面已成功加载。
2
我还尝试了 setDefaultHomepage('/t/table-builder-test-2/1667'); 和
const container = Discourse.__container__;
const router = container.lookup("router:main");
let topicId = router.currentRoute.parent.params.id
PreloadStore.remove(`topic/${topicId}`);
它只会在加载 gated 页面后重定向,然后单击返回按钮。
3
location.href = '/t/table-builder-test-2/1667'
它有效,但 gated 页面也会加载几秒钟,不像 1 那样流畅。
实现此目的的最佳方法是什么?
