Vue+Echarts報錯Cannot set properties of undefined (setting ‘plate‘)
Vue+Echarts報錯Cannot set properties of undefined (setting ‘plate‘)
代碼:
報錯信息:
上面的報錯主要是:
Cannot set properties of undefined (setting ‘plate’)
翻譯之後就是:無法設置未定義的屬性(設置“plate”)(這裡plate是在this裡面定義的一個屬性)
從這就能大概猜出是因為獲取不到data裡定義的這個屬性造成的(具體就是this指向問題)
第一次解決問題
原本我以為定義一個that方法把他指向給this就行,結果還是報錯瞭
第二次解決問題
仔細檢查瞭一下,發現是formatter造成的,改成箭頭函數就可以直接獲取到data定義的內容
Vue引入Echarts報錯解決
在Vue項目中引入Echart(使用npm install指令)的時候報錯:
PS G:> npm install
npm WARN old lockfile
npm WARN old lockfile The package-lock.json file was created with an old version of npm,
npm WARN old lockfile so supplemental metadata must be fetched from the registry.
npm WARN old lockfile This is a one-time fix-up, please be patient…
npm WARN old lockfile
npm ERR! code EINVALIDPACKAGENAME
npm ERR! Invalid package name "_@[email protected]@@ampproject": name cannot start with an underscore; name can only contain URL-friendly charactersnpm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\勝勝\AppData\Local\npm-cache\_logs\2022-04-08T15_40_42_658Z-debug.log
原因是package-lock.json這個文件在創建的時候使用瞭舊版本的npm,其必須從註冊表中獲取補充元數據。
使用cnpm install指令即可順利安裝相應的依賴。
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- npm install編譯時報"Cannot read properties of null (reading ‘pickAlgorithm‘)"錯誤的解決辦法
- npm的安裝與使用
- 用electron打包vue項目中的報錯問題及解決
- 基於vue+echarts數據可視化大屏展示的實現
- Node.js包管理器npm的具體使用