代码拉取完成,页面将自动刷新
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 阻挡消息不再往下
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。