Flutter-仅当TextField失去焦点时才验证TextFormField

时间:2019-12-17 14:47:19

标签: flutter dart

我有一个关于验证文本表单字段的问题。

有没有一种方法只能在TextFormField失去焦点时验证它的值?

当焦点改变时,我想调用一个API来检查用户名是否已经存在于数据库中。如果我在autoValidate中将TextFormField设置为true,则每次用户按下一个键时,它将验证。因此,如果用户名包含20个字符,它将调用我的API 20次。因此,为了消除开销,我只想在焦点更改时调用API。

2 个答案:

答案 0 :(得分:2)

您可以将focusNode附加到TextField,以便每当焦点更改时,您都可以进行api调用并验证文本。在您的班级内部尝试

FocusNode focusNode;
bool _hasInputError;
String text;
  @override
  void initState() {
    super.initState();
    focusNode = new FocusNode();
    focusNode.addListener(() {
      if (!focusNode.hasFocus) {
        setState(() {
          _hasInputErro = //Check your conditions on text variable
        });
      }
    });
  }

然后在TextField中进行

TextField(
  focusNode: _focusNode,
  decoration: InputDecoration(
     errorText: _hasInputError ? "Your error message" : null,
   ),
   onChanged: (String _text) {
     text = _text;
   },
 )  

答案 1 :(得分:0)

我还没有找到任何捷径。但是我已经编写了如下代码,它对我有用。

  final formKey = GlobalKey<FormState>();
  FocusNode textFieldFocusNode = FocusNode();
  bool canCleartextFieldError = false;

  @override
  void initState() {
    super.initState();
    addListener();
  }  
  
  addListener(){
    textFieldFocusNode.addListener(() {
      setState(() {
        canCleartextFieldError = textFieldFocusNode.hasFocus;
      });
    });
  }

  @override
  Widget build(BuildContext context) {
    return Form(
      autovalidateMode: AutovalidateMode.onUserInteraction,
      key: formKey,
      child: SingleChildScrollView(
        child: Column(
          children: <Widget>[
            TextFormField(
              focusNode: textFieldFocusNode,
              validator: (text) {
                return canCleartextFieldError == true? null: text == ''? 'please enter text here...': null;
              },
            ),
            FlatButton(
              child: Text('Button'),
              onPressed: () {
                setState(() { canCleartextFieldError = false; });
                if(formKey.currentState.validate()){
                  // Todo: do your valid job here...
                }
              },
            )
          ],
        ),
      ),
    );
  }