如果我有一个文本字段,并且在该文本字段中进行了更改,我会调用一个函数,该函数会调用一个API,如何限制它,因此仅当用户在1秒钟内未键入任何内容时,它才会调用该函数?
我在这里迷路了。任何帮助都超过了欢迎。
答案 0 :(得分:4)
使用Timer
。
如果在一秒钟前按下一个键,则取消旧计时器并重新安排新计时器,否则进行API调用:
import 'dart:async';
class _MyHomePageState extends State<MyHomePage> {
String textValue;
Timer timeHandle;
void textChanged(String val) {
textValue = val;
if (timeHandle != null) {
timeHandle.cancel();
}
timeHandle = Timer(Duration(seconds: 1), () {
print("Calling now the API: $textValue");
});
}
@override
void dispose() {
super.dispose();
timeHandle.cancel();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
padding: EdgeInsets.all(20),
alignment: Alignment.center,
child: TextField(
onChanged: textChanged,
decoration: InputDecoration(
border: InputBorder.none,
hintText: 'Please enter a search term')),
),
],
),
),
);
}
}
答案 1 :(得分:2)
您需要使用async package中名为CancelableOperation
的类。
您可以在build()
方法之外的有状态窗口小部件中声明它:
CancelableOperation cancelableOperation;
并在onChanged
回调中像这样使用它:
cancelableOperation?.cancel();
cancelableOperation = CancelableOperation.fromFuture(Future.delayed(Duration(seconds: 1), () {
// API call here
}));