1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-09-13 00:50:40 +08:00
Files
uni-halo/.agents/bak-skills/uniapp-ad/examples/integration/events.md
T
2026-08-31 07:58:23 +08:00

383 B

广告事件处理

官方文档

参考官方文档:https://uniapp.dcloud.net.cn/uni-ad/

示例

rewarded.onLoad(() => {
  console.log('广告加载成功')
})
rewarded.onError(err => {
  console.error('广告加载失败', err)
})
rewarded.onClose(res => {
  console.log('广告关闭', res)
})

参考资源