hexo博客next主题引入wordcount后,执行hexo命令报错?
我想为我的博客(hexo博客,next主题)添加字数统计功能,按照网上的办法,先执行了下面的代码:
$ npm install hexo-wordcount --save
执行完成后提示成功,然后修改主题配置文件
post_wordcount:
item_text: true
wordcount: true
min2read: true
修改完成后,执行 hexo clean、hexo g、hexo d这些命令,每个都报错,但是报错之后这些命令也能正确执行。
下面是执行hexo clean后的报错信息:
ERROR Plugin load failed: hexo-wordcount
SyntaxError: Unexpected token {
at Object.exports.runInThisContext (vm.js:53:16)
at D:\Github\hexo\node_modules\_hexo@3.3.6@hexo\lib\hexo\index.js:230:17
at tryCatcher (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\util.js:16:23)
at Promise._settlePromiseFromHandler (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:512:31)
at Promise._settlePromise (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:569:18)
at Promise._settlePromise0 (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:614:10)
at Promise._settlePromises (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:693:18)
at Promise._fulfill (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:638:18)
at Promise._resolveCallback (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:432:57)
at Promise._settlePromiseFromHandler (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:524:17)
at Promise._settlePromise (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:569:18)
at Promise._settlePromise0 (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:614:10)
at Promise._settlePromises (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:693:18)
at Promise._fulfill (D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\promise.js:638:18)
at D:\Github\hexo\node_modules\_bluebird@3.5.0@bluebird\js\release\nodeback.js:42:21
at D:\Github\hexo\node_modules\_graceful-fs@4.1.11@graceful-fs\graceful-fs.js:78:16
at FSReqWrap.readFileAfterClose [as oncomplete] (fs.js:380:3)
INFO Deleted database.
请问这个错误是怎么回事?现在字数统计功能也没实现,不知道怎么弄了,求助!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
基本上是你文件有地方写法错误,而不是这个插件的问题
可能的原因:
文章中使用了now( ), 小括号( )属于特殊字符,在编译文章时将now( )当函数处理了,结果找不到函数,就报错了
文章中使用了大括号 { } 这个特殊字符,且没有转义导致编译不通过
文章中使用了某个特殊字符, 解析时讲表达式中的内容按函数处理了,特殊字符没有转义导致编译不通过
Hexo博客Next主题集成第三方服务,Hexo博客Next主题配置,参考网站
我也遇到了完全相同的问题,最后发现是我的Nodejs版本太低的问题。
安装2.x版本的wordcount插件即可解决。
https://www.npmjs.com/package...
应该是插件的问题,这个插件连 test 都没有,可以试试另外一个 https://github.com/ludoviclef...
lz解决了没有 我也遇到这个问题了