小程序云开发定时触发器不生效?
config.json
{
"triggers": [
{
"name": "timer",
"type": "timer",
"config": "*/1 * * * * ?"
}
]
}
index.js
exports.main = async (event, context) => {
console.log("1111")
wx.showToast({
title: '删除成功',
icon: 'success',
duration: 2000
})
}
我看社区运营专员在别的贴子下回复说name要和云函数名字一致,我这个也改成一致的了,但是还是不生效。我看官方视频里名字也没有一致啊?