加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
老黄历.js 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
玉玉了 提交于 2023-05-28 12:39 . V3
import plugin from '../../lib/plugins/plugin.js'
import fetch from "node-fetch";
import lodash from 'lodash'
//1.定义命令规则
export class example extends plugin {
constructor() {
super({
/** 功能名称 */
name: '查农历',
/** 功能描述 */
dsc: '简单开发示例',
/** https://oicqjs.github.io/oicq/#events */
event: 'message',
/** 优先级,数字越小等级越高 */
priority: 50000,
rule: [
{
/** 命令正则匹配 */
reg: "^#*老黄历$",
/** 执行方法 */
fnc: 'huangli'
},
]
})
}
async huangli(e) {
{
let url = `https://xiaobai.klizi.cn/API/other/laohuangli.php`;
let res = await fetch(url).catch((err) => logger.error(err))
if (!res) {
logger.error('[老黄历查询] 接口请求失败')
return await this.reply('黄历查询接口请求失败,请联系主人更换接口')
}
res = await res.text()
await this.reply(`${res}`)
}
return true; //返回true 阻挡消息不再往下
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化