当前位置:网站首页>微信公众号之底部菜单
微信公众号之底部菜单
2022-08-04 11:19:00 【youhebuke225】
专栏目录请点击
简介
- 我们可以观看官网的介绍 点击
- 他的核心是,我们需要调微信的api来进行创建菜单,且菜单的参数,在官网的例子中已经给出
- 调用的接口为 https://api.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN
- 他是一个
post
请求,参数放在请求体中(body
) - 参数如下
{
"button":[
{
"type":"click",
"name":"今日歌曲",
"key":"V1001_TODAY_MUSIC"
},
{
"name":"菜单",
"sub_button":[
{
"type":"view",
"name":"搜索",
"url":"http://www.soso.com/"
},
{
"type":"miniprogram",
"name":"wxa",
"url":"http://mp.weixin.qq.com",
"appid":"wx286b93c14bbf93aa",
"pagepath":"pages/lunar/index"
},
{
"type":"click",
"name":"赞一下我们",
"key":"V1001_GOOD"
}]
}]
}
在这个参数中,他既有一级菜单,也有二级菜单,并且也有不同功能的按钮
代码
- 我们使用一个文件来保存我们定义的按钮,我们就把它叫做
menu.js
,把他放在wechat
文件夹下 - 写上如下代码,我们先写一个简单的菜单
module.exports = {
"button": [
{
"type": "click",
"name": "今日歌曲",
"key": "V1001_TODAY_MUSIC"
},
{
"name": "菜单",
"sub_button": [
{
"type": "view",
"name": "搜索",
"url": "http://www.soso.com/"
}]
}]
}
- 我们可以观看我们调用的接口,我们会发现他需要
ACCESS_TOKEN
,所以我们把请求的放到了获取ACCESS_TOKEN
的WeChat
类中 - 我们在
libs
文件夹下新建一个api.js
的文件,专门用来管理接口,并写上如下的内容
const prefix = "htps://api.weixin.qq.com/cgi-bin/"
module.exports = {
menu:{
// 创建菜单 https://developers.weixin.qq.com/doc/offiaccount/Custom_Menus/Creating_Custom-Defined_Menu.html
create:prefix + "menu/create?",
// 删除菜单 https://developers.weixin.qq.com/doc/offiaccount/Custom_Menus/Deleting_Custom-Defined_Menu.html
delete:prefix +'menu/delete?',
// 获取菜单 https://developers.weixin.qq.com/doc/offiaccount/Custom_Menus/Querying_Custom_Menus.html
get:prefix +'menu/get?',
// 个性化菜单相关
}
}
- 他包括,创建菜单的方法,删除菜单的方法等,我们先写一个创建和删除的方法,并进行测试
class WeChat {
// ...
createMenu(body) {
// 创建菜单
return new Promise(async (resolve, reject) => {
try {
const {
access_token } = await this.fetchAccessToken()
const url = `${
api.menu.create}access_token=${
access_token}`
const res = await rp({
method: "POST", json: true, url, body }) // 请求数据
resolve(res)
} catch (error) {
reject(`createMenu方法处理问题${
error}`);
}
})
}
deleteMenu() {
return new Promise(async (resolve, reject) => {
try {
const {
access_token } = await this.fetchAccessToken()
const url = `${
api.menu.delete}access_token=${
access_token}`
const res = rp({
method: "GET", json: true, url })
resolve(res)
} catch (error) {
reject(`deleteMenu方法处理问题${
error}`)
}
})
}
}
- 上面的方法是菜单删除和创建的函数,我们测试一下这两个函数,于是我们在当前文件下写一个
立即执行函数
// 进行测试
(async () => {
const weChatApi = new WeChat()
let data = await weChatApi.deleteMenu()
console.log(data)
data = await weChatApi.createMenu(menu)
console.log(data)
})()
- 执行当前的js文件,如果没有报错,那么就是创建成功了,过两三分钟,可以看一下我们的公众号,发现底部已经有按钮了
其他的按钮类型
- 通过微信官网,我们可以发现微信提供的按钮类型有多种 点击,一共有12种菜单
- 同时,我们一定注意不同中的按钮的兼容性
边栏推荐
猜你喜欢
Leetcode Brush Questions - Path Sum
Leetcode刷题——构造二叉树(105. 从前序与中序遍历序列构造二叉树、106. 从中序与后序遍历序列构造二叉树)
audio_policy_configuration.xml配置文件详解
【黄啊码】MySQL入门—1、SQL 的执行流程
3-5年以上的功能测试如何进阶自动化?
Oracle中对临时表空间执行shrink操作
vscode插件设置——Golang开发环境配置
The use of DDR3 (Naive) in Xilinx VIVADO (2) Read and write design
Xilinx VIVADO 中 DDR3(Naive)的使用(1)创建 IP 核
Win11 file types, how to change?Win11 modify the file suffix
随机推荐
ESP8266-Arduino编程实例-APDS-9930环境光和趋近感器驱动
手搓一个“七夕限定”,用3D Engine 5分钟实现烟花绽放效果
【LeetCode】653. 两数之和 IV - 输入 BST
The sword refers to the Great Wall Cannon?Official spy photos of Changan's new pickup
MATLAB程序设计与应用 3.1 特殊矩阵
解析treeSet集合进行自定义类的排序
RL78 development environment
Meishe Q&A Room | Meiying VS Meishe Cloud Editing
【LeetCode】1403.非递增顺序的最小子序列
WPF 截图控件之画笔(八)「仿微信」
Leetcode brush - structure binary tree (105. Once upon a time sequence and the sequence structure binary tree traversal sequence, 106. From the sequence with the sequence structure binary tree travers
AWS Lambda related concepts and implementation approach
Leetcode - using sequence traversal features first completed 114. The binary tree to the list
vector中函数emplace_back的实现原理
数据库对象
Zhihu Data Analysis Training Camp
*iframe*
Xilinx VIVADO 中 DDR3(Naive)的使用(3)仿真测试
shell变量
Maple 2022 software installation package download and installation tutorial