React doesn't render autocomplete off

前端 未结 11 1200
陌清茗
陌清茗 2020-12-15 02:17

How do I make react render it?



        
11条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-15 02:54

    I solved it with just one line:

    If you use the recommended way with "changeHandler()" and the components state, just insert:

    changeHandler = (e) => {    
      if (!e.isTrusted) return;
      ... your code
    }
    

    More infos on that changeHandler()-Thing:
    https://reactjs.org/docs/forms.html#controlled-components

提交回复
热议问题