在使用hexo-admin插入图片时,我发现插入的图片显示错误,并且链接也有问题。
1 2 3 4
| 预期  实际 
|
修复方法
修改 blog/node_modules/hexo-admin/api.js
文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| filename = imagePath + '/' + filename var outpath = path.join(hexo.source_dir, filename)
var dataURI = req.body.data.slice('data:image/png;base64,'.length) var buf = new Buffer(dataURI, 'base64') hexo.log.d(`saving image to ${outpath}`) fs.writeFile(outpath, buf, function (err) { if (err) { console.log(err) } hexo.source.process().then(function () { res.done({ src: filename, msg: msg }) }); })
|