如文档 autorun
中所述,可用于对被调用函数进行去抖动,因此最后一次调用是我们在一定时间内被调用的唯一调用。
但我不知道如何将它与action
使用 a 的 a一起使用flow
,有什么例子吗?
例如:
syncMobileToken: flow(function* syncMobileToken(token) {
self.isLoading = true
let response = yield cli.post("/notifications/sync_mobile_token", {
token: token,
device_id: Config.DEVICE_ID,
})
self.isLoading = false
}),
上面的例子将如何autorun
使用?