Hexo 图片上传之 hexo-asset-image 路径编译 BUG

时间:2022-10-07 16:59:02

这个 BUG 的来源于是因为博主想在 hexo 当中进行本地查看的时候发现图片加载全部未显示,然后我就查看控制台编译的结果发现,路径如下:

update link as:-->/.com/06/01/vim/1561905818946.png
update link as:-->/.com/06/01/vim/1561905818946.png

生成了一个这样的路径,我当时一想这是啥路径,完全不是我想要的一个正常显示图片的路径,于是我就特意的记录了下来,可以帮助后者避免这个坑,经过我去搜寻一番,发现这个 ​​hexo-asset-image​​​ 插件有问题,在 hexo 3.0 以上与 hexo3.0 以下获取 url 的方式不同,结果就导致获取到了 ​​.com​​ 这种奇怪的域名拼接在我们的图片路径当中了。

解决方式

hexo 3.0 以下

修改源码找到 /node_modules/hexo-asset-image/index.js 将当中的内容替换为我如下提供的内容即可:

'use strict';
var cheerio = require('cheerio');

// http://*.com/questions/14480345/how-to-get-the-nth-occurrence-in-a-string
function getPosition(str, m, i) {
return str.split(m, i).join(m).length;
}

var version = String(hexo.version).split('.');
hexo.extend.filter.register('after_post_render', function (data) {
var config = hexo.config;
if (config.post_asset_folder) {
var link = data.permalink;
if (version.length > 0 && Number(version[0]) == 3)
var beginPos = getPosition(link, '/', 1) + 1;
else
var beginPos = getPosition(link, '/', 3) + 1;
// In hexo 3.1.1, the permalink of "about" page is like ".../about/index.html".
var endPos = link.lastIndexOf('/') + 1;
link = link.substring(beginPos, endPos);

var toprocess = ['excerpt', 'more', 'content'];
for (var i = 0; i < toprocess.length; i++) {
var key = toprocess[i];

var $ = cheerio.load(data[key], {
ignoreWhitespace: false,
xmlMode: false,
lowerCaseTags: false,
decodeEntities: false
});

$('img').each(function () {
if ($(this).attr('src')) {
// For windows style path, we replace '\' to '/'.
var src = $(this).attr('src').replace('\\', '/');
if (!/http[s]*.*|\/\/.*/.test(src) &&
!/^\s*\//.test(src)) {
// For "about" page, the first part of "src" can't be removed.
// In addition, to support multi-level local directory.
var linkArray = link.split('/').filter(function (elem) {
return elem != '';
});
var srcArray = src.split('/').filter(function (elem) {
return elem != '' && elem != '.';
});
if (srcArray.length > 1)
srcArray.shift();
src = srcArray.join('/');
$(this).attr('src', config.root + link + src);
console.info && console.info("update link as:-->" + config.root + link + src);
}
} else {
console.info && console.info("no src attr, skipped...");
console.info && console.info($(this));
}
});
data[key] = $.html();
}
}
});

修改完毕之后生成的地址就是正常理想的路径了:

update link as:-->/2022/08/09/%E9%9D%A2%E8%AF%95%E9%A2%98/Linux/02-%E6%9D%83%E9%99%90/img.png
update link as:-->/2022/08/09/%E9%9D%A2%E8%AF%95%E9%A2%98/Linux/02-%E6%9D%83%E9%99%90/img.png

hexo 3.0 以上用户应该也可以选择直接卸载 hexo-asset-image 插件,直接使用官方的相对路径引用的标签插件 ​​https://hexo.io/zh-cn/docs/asset-folders​