vite 里 Cannot read properties of undefined (reading 'split')
时间: 2023-11-21 14:55:29 浏览: 448
Electron+Vue+Vite+ElementPlus 实战
在Vite中,如果出现“Cannot read properties of undefined (reading 'split')”这个错误,通常是因为你的代码中访问了一个未定义的变量或属性。这个错误提示表明你正在尝试对一个undefined值进行split操作,而undefined值没有split方法,因此会抛出这个错误。
解决这个问题的方法是在使用split方法之前,先判断该变量或属性是否存在。你可以使用if语句来检查该变量或属性是否存在,如果存在再进行split操作。例如:
```javascript
if (data && data.subresolution) {
this.VideoFormat = data.subresolution.split("_")[0];
}
```
这样就可以避免出现“Cannot read properties of undefined (reading 'split')”这个错误了。
阅读全文