@override
onInit() {
super.onInit();
/// 每次更改都会回调
ever(count1, (_) => print("$_ has been changed"));
/// 第一次更改回调
once(count1, (_) => print("$_ was changed once"));
/// 更改后3秒回调
debounce(count1, (_) => print("debouce$_"), time: Duration(seconds: 3));
///3秒内更新回调一次
interval(count1, (_) => print("interval $_"), time: Duration(seconds: 3));
}
Getx worker可以用来 优化
节流:搜索框的实时搜索功能, 例如输入关键词隔一秒之后才搜索一次,减轻服务器压力。
防抖:也可以优化一些点击事件,防止重复提交,点赞等功能可以用到。