執(zhí)行npm install時出現(xiàn)以下錯誤
npm ERR! Unexpected end of JSON input while parsing near '....1","table":"^3.7.8",'
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\andro\AppData\Roaming\npm-cache_logs\2019-05-20T07_05_51_075Z-debug.log
解決方法:
1.直接執(zhí)行 npm cache clean --force, 如果執(zhí)行成功,再npm install即可。
2.如果執(zhí)行失敗,請先升級npm,即npm i -g npm, 最后再執(zhí)行npm cache clean --force, 最后再npm install.
3.如果還執(zhí)行失敗,那就先npm cache verify,再npm cache clean --force,最后再npm install。
4.如果還是失敗,循環(huán)執(zhí)行npm cache clean --force,然后再npm install。