代码拉取完成,页面将自动刷新
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: 5000,
rule: [
{
/** 命令正则匹配 */
reg: "^#*(报时|几点了|日期|今天几号|现在几点了)$",
/** 执行方法 */
fnc: 'hua'
},
]
})
}
async hua(e) {
let url = `https://api.andeer.top/API/time2.php`;
let response = await fetch(url);
let res = await response.json();
let url2 = `https://api.andeer.top/API/nlrq.php`;
let response2 = await fetch(url2);
let res2 = await response2.json();
let msg = [
`当前时间为:${res.data.time3}\n\n`,
`今天是:\n`,
`${res.data.time2} ${res.data.week}\n`,
`${res2.data.农历}\n`,
`${res2.data.生肖} ${res2.data.节气}`
];
//发出消息
await e.reply(msg);
return true; //返回true 阻挡消息不再往下
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。