TypeError: _vm.__HOLDER__ is not a function
[Vue warn]: Property or method "__HOLDER__" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based compone
最近在使用uniapp开发微信小程序,遇到了一个很神奇的bug,如果是2022年以前下载的node_modules不会出现bug,而2022年以后下载的node_modules会出现此bug
1、问题
[Vue warn]: Property or method "__HOLDER__" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property.
TypeError: _vm.__HOLDER__ is not a function
2、发现原因
后来发现编译后的u-popup组件(uView UI的组件),多出了一些代码(如下图)。得出结论:由于下载的编译包版本不同,导致编译不同。出现这个问题的原因是:package-lock.json里面的内容,不小心被我老大删掉了,导致下载的依赖包版本不同,没有锁定在之前的版本。还好,此package-lock.json已经被git托管。
3、解决方案
通过git找到以前的package-lock.json版本的内容,并且恢复package-lock.json内容,然后再重新安装依赖,此bug就可以完美解决
4、扩展知识
package.json文件只能锁定大版本,也就是版本号的第一位,并不能锁定后面的小版本,你每次npm install都是拉取的该大版本下的最新的版本,为了稳定性考虑我们几乎是不敢随意升级依赖包的,这将可能导致一些bug的出现,所以才有了package-lock.json文件,package-lock.json记录了node_modules目录下所有模块的具体来源和版本号以及其他的信息,当你每次安装一个依赖的时候就锁定在你安装的这个版本。
更多推荐
所有评论(0)