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.
我正在为 appjs 搜索相当于 app.config 的内容,因为我需要存储一些变量并且我不希望用户可以看到其中的一个。有什么建议吗?
app.config 文件在服务器端,但 .js 在客户端运行。没有 app.config 之类的文件,您应该使用 cookie 等客户端解决方案,或者您可以将变量保存在服务器上,然后在需要时使用 ajax 加载它。