加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
当前时间.js 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
玉玉了 提交于 2023-05-28 12:38 . 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: 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 阻挡消息不再往下
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化