解除async的闭包

This commit is contained in:
洛洛希雅 2024-05-08 13:53:18 +08:00
parent 37b00d8d17
commit 10a871fb20

View File

@ -79,7 +79,7 @@ async function publish() {
if (i >= list.length) i = 0
return list[i]
}
;(async () => {
let exit = false
jobCancel.value = () => {
exit = true
@ -109,7 +109,6 @@ async function publish() {
const json = JSON.stringify(item)
mqttClient!.publish(topic, json, {})
}, 100)
})().catch((e) => console.error(e))
}
</script>