如何动态更改package.json的版本?
- 我从服务器获取版本 1.0.1 (server_version)
- 我比较 process.env.version === server_version 中的内容
- 如果是这种情况,那么我更改 process.env.version = server_version。
但是,我无法从客户端做到这一点。
所有这些都需要向用户请求更新,即当有新版本发布时,然后询问,然后执行 $router.go()
- I get version 1.0.1 (server_version) from the server
- I compare what is in process.env.version === server_version
- If this is the case, then I change process.env.version = server_version.
However, I just can't do it from the client side.
All this is needed to request an update from the user, that is, when a new version is released, then ask, and then do $router.go()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Vue-CLI - 您可以像我一样执行以下操作:
然后,在您的
public/index.html
中然后,在您的
src/main.js
中然后在 src/mixins/mixinVersion.js 中
If you're using Vue-CLI - you can do the same as me:
Then, in your
public/index.html
Then, in your
src/main.js
Then in
src/mixins/mixinVersion.js