hexo g报错,请问怎么处理?

ubuntu@VM-16-13-ubuntu:~/hexoblog$ sudo hexo s
INFO  Validating config
INFO  Start processing
FATAL { err:
   TypeError: line.matchAll is not a function
       at res.value.res.value.split.map.line (/home/ubuntu/hexoblog/node_modules/hexo-util/lib/highlight.js:128:26)
       at Array.map (<anonymous>)
       at closeTags (/home/ubuntu/hexoblog/node_modules/hexo-util/lib/highlight.js:126:37)
       at highlight (/home/ubuntu/hexoblog/node_modules/hexo-util/lib/highlight.js:119:10)
       at highlightUtil (/home/ubuntu/hexoblog/node_modules/hexo-util/lib/highlight.js:23:16)
       at data.content.dataContent.replace (/home/ubuntu/hexoblog/node_modules/hexo/lib/plugins/filter/before_post_render/backtick_code_block.js:92:17)
       at String.replace (<anonymous>)
       at Hexo.backtickCodeBlock (/home/ubuntu/hexoblog/node_modules/hexo/lib/plugins/filter/before_post_render/backtick_code_block.js:19:30)
       at Hexo.tryCatcher (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/util.js:16:23)
       at Hexo.<anonymous> (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/method.js:15:34)
       at Promise.each.filter (/home/ubuntu/hexoblog/node_modules/hexo/lib/extend/filter.js:67:52)
       at tryCatcher (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/util.js:16:23)
       at Object.gotValue (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/reduce.js:166:18)
       at Object.gotAccum (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/reduce.js:155:25)
       at Object.tryCatcher (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/util.js:16:23)
       at Promise._settlePromiseFromHandler (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/promise.js:547:31)
       at Promise._settlePromise (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/promise.js:604:18)
       at Promise._settlePromiseCtx (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/promise.js:641:10)
       at _drainQueueStep (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/async.js:97:12)
       at _drainQueue (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/async.js:86:9)
       at Async._drainQueues (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/async.js:102:5)
       at Immediate.Async.drainQueues [as _onImmediate] (/home/ubuntu/hexoblog/node_modules/bluebird/js/release/async.js:15:14) } 'Something\'s wrong. Maybe you can find the solution here: %s' '\u001b[4mhttps://hexo.io/docs/troubleshooting.html\u001b[24m'

版本12.0.0的Node.js中支持String.matchAll()

两种解决方法

请将nodejs升级到高于12.0.0的版本。

或者 config.xml中的 highlight->enable的值从true更改为false,这样可以避免异常。

答案来自于StackOverflow

似乎是line.matchAll 不是一个函数,也就是,你调用它可能传的不是函数

应该是版本不对,检查下是不是版本的问题

您好,我是有问必答小助手,您的问题已经有小伙伴解答了,您看下是否解决,可以追评进行沟通哦~

如果有您比较满意的答案 / 帮您提供解决思路的答案,可以点击【采纳】按钮,给回答的小伙伴一些鼓励哦~~

ps:问答VIP仅需29元,即可享受5次/月 有问必答服务,了解详情>>>https://vip.csdn.net/askvip?utm_source=1146287632

请问楼主解决了吗