来源博客:【Harryの心阁】
1.仓库简介
- 个人博客微信小程序
- 配置hexo插件生成json数据接口
- 适用于hexo的各类主题版本
2.已上线小程序–搜索 [今日在学c]
一起学习可好? 扫码关注, 了解更多!!
图1 首页
|
图2 个人中心
|
图3 文章页
|
图4 本地搜索
|
3.HEXO部署方法
npm install hexo-generator-wxapi --save
3.1具体步骤(接口配置)
- 在hexo
_config.yml 文件中加入以下配置 必须配置
restful_api:
site: true
posts_size: 10
posts_props:
title: true
slug: true
date: true
updated: true
comments: true
path: true
excerpt: false
cover: true
content: false
keywords: false
categories: true
tags: true
categories: true
use_category_slug: false
tags: true
use_tag_slug: false
post: true
pages: false
swipers_list: []
search_all:
enable: true
path: api/search.json
field: post
content: true
4. 小程序配置
git clone https://github.com/Rr210/hexo-wx-api
- 配置微信小程序
- 找到config文件下的
config.js 进行配置, 如下
//配置域名,域名只修改此处。可以配置为根域名 u.mr90.top/blog
const DOMAIN = "u.mr90.top";
const WEBSITENAME = "Harryの心阁"; //网站名称
const ZANIMAGEURL = '../../static/images/zanshang.jpg'; //微信鼓励的图片链接,用于个人小程序的赞赏
const LOGO = "../../static/images/logo-icon.png"; // 网站的logo图片
//首页图标导航
//参数说明:'name'为名称,'image'为图标路径,'url'为跳转的页面,'redirecttype'为跳转的类型,apppage为本小程序的页面,miniapp为其他微信小程序,webpage为web-view的页面
//redirecttype 是 miniapp 就是跳转其他小程序 url 为其他小程序的页面
//redirecttype 为 apppage 就是跳转本小程序的页面,url为本小程序的页面路径
//'appid' 当redirecttype为miniapp时,这个值为其他微信小程序的appid,如果redirecttype为apppage,webpage时,这个值设置为空。
//'extraData'当redirecttype为miniapp时,这个值为提交到其他微信小程序的参数,如果redirecttype为apppage,webpage时,这个值设置为空。
const ISAD = {
"enable": false, // 是否开启,第一次使用时设为false.达到默认条件即可开启
"bannerId": 'adunit-c9dae21126085de9' // 自行申请id
}; // 是否开启广告
// 注意: 如果只是跳转微信小程序内部界面 无需修改以下内容
const INDEXNAV = [{
id: '1',
name: '热门排行',
image: '../../static/icon/index/1.png',
url: '../hot/hot',
redirecttype: 'apppage',
appid: '',
extraData: ''
}
// ...........
];
5.公众号:今日在学
一起学习可好?扫码关注,了解更多!!
|