Next -16- 添加搜索功能

2022-08-04 14:23:01 浏览数 (1)

本文介绍开启 Next 主题站内搜索功能的方法。

安装插件

安装插件hexo-generator-searchdb

代码语言:javascript复制
npm install hexo-generator-searchdb --save

确定插件安装过程中,没有错误,不然生成站点可能会有搜索框显示问题。

修改站点配置文件

添加内容:

代码语言:javascript复制
# Search 
search:
  path: ./public/search.xml
  field: post
  format: html
  limit: 10000

修改主题配置文件

修改主题配置文件,开启站内搜索开关:

代码语言:javascript复制
# Local Search
# Dependencies: https://github.com/theme-next/hexo-generator-searchdb
local_search:
  enable: true
  # If auto, trigger search by changing input.
  # If manual, trigger search by pressing enter key or search button.
  trigger: auto
  # Show top n results per article, show all results by setting to -1
  top_n_per_article: 7
  # Unescape html strings to the readable one.
  unescape: false
  # Preload the search data when the page loads.
  preload: false

生成站点

生成 hexo 站点,建议先清理public文件夹,避免显示异常的问题:

代码语言:javascript复制
hexo clean && hexo g && hexo d

效果

成功后可以搜索站内内容:

0 人点赞