Hexo Next主题站内搜索功能异常

主要看看跳转后的url是什么,如果url异常,就需要在站点配置文件(注意不是主题配置文件)下面看看你的url和永久链接设置的是否正确。如下所示:

1
2
3
4
5
6
# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: https://hellozhaozheng.github.io
root: //
permalink: z_post/:title/ #这里一定要注意,z_post的前面绝对不能加 / ,否则就会挑转异常
permalink_defaults:

一直处于加载状态:
首先看是不是有哪些文件的title命名方式有问题, 已知的问题有: 不能有包含半角的冒号(全角可以), 这个可以用hexo g得知, 如果有问题, 则hexo g会报错

方法一:hexo clean + hexo g 重新生成search.xml文件

方法二:更新searchdb插件:

1
npm install hexo-generator-searchdb --save

方法三:文章太多时, 尝试将_comfig.yml中Local Search下的limits设置的更高一些

以上内容原文链接:https://blog.csdn.net/ksws0292756/article/details/82714984

我遇到的问题:

在浏览器输入本地的博客地址 http://localhost:4000/search.xml

出现如下错误提示,如果没有的话就把最新的博客推到github上,然后在你github博客的地址后面加上search.xml

This page contains the following errors:
error on line 1519 at column 23: Input is not proper UTF-8, indicate encoding !
Bytes: 0x0B 0xE5 0x85 0xB3
Below is a rendering of the page up to the first error.

这里是说在1519行有错误,用的不是UTF-8编码

把该网页信息右键另存到本地,然后用文本工具打开刚刚保存的search.xml文件,找到第1519行这里会告诉你文章的标题、内容等,找到显示乱码的内容到 .md文件里修改回来就可以了。

-------------本文结束感谢您的阅读-------------