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.
我使用 HotTowel SPA 模板开发了一个网站。用户需要从带有一些参数(查询字符串/帖子)的另一个网站上的超链接访问这个 SPA 网站。我需要在 shell.js 中访问这些参数,因为 header.html 视图需要这些数据。如果我在哈希标记中使用 :parm 语法传递,startmodule 将来不及访问此信息。
你能告诉我最好的方法吗?
在此先感谢维克
您可以通过 window 对象访问 shell.js 中的查询字符串参数。
window.location.search
MDN 上有一篇文章显示了这一点。