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.
在我的 js 文件中设置全局变量似乎不起作用。如何session从 JavaScript 设置 rails 变量?
session
我想要一个不使用 jQuery 的解决方案。
编辑:解决方案是使用包含隐藏字段的 HTML 表单。
全局变量仅在页面查看期间有效。重新呈现页面后,它们将重置为其默认值。
如果您需要保留这些值,则需要使用 cookie 或本地存储。其他选项是使用 Ajax 将它们提交到服务器,并让服务器记住它们并在呈现页面时设置值。