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 characters

npm 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。

推薦閱讀: