書籍を検索するフォームをReactで作成しており、入力欄でエンターを押した時に検索結果が表示されるようにしたいのですが、エンターを押してもhandleSubmit
が実行されません。
しかしform
要素内にbutton
要素を設置し、onClick
属性にhandleSubmit
を設定すると検索結果が表示されます。
なぜこのような挙動になるのでしょうか?
js
1const SearchForm = ({ setBooks }) => { 2 const classes = useStyles(); 3 const [title, setTitle] = useState(''); 4 const [author, setAuthor] = useState(''); 5 6 const handleTitleInput = useCallback(e => { 7 setTitle(e.target.value); 8 }, []); 9 10 const handleAuthorInput = useCallback(e => { 11 setAuthor(e.target.value); 12 }, []); 13 14 const handleSubmit = useCallback( 15 async e => { 16 e.preventDefault(); 17 if (!(title || author)) { 18 return; 19 } 20 21 const data = await fetchBooks(title, author); 22 setBooks(data); 23 }, 24 [author, setBooks, title] 25 ); 26 27 return ( 28 <form noValidate autoComplete="off" onSubmit={handleSubmit}> 29 <TextField 30 id="filled-basic" 31 variant="filled" 32 color="secondary" 33 label="タイトル" 34 value={title} 35 onChange={handleTitleInput} 36 className={classes.root} 37 /> 38 <Box mt={3} /> 39 <TextField 40 id="filled-basic" 41 variant="filled" 42 color="secondary" 43 label="著者" 44 value={author} 45 onChange={handleAuthorInput} 46 className={classes.root} 47 /> 48 <button onClick={handleSubmit}>検索</button> // これを消すと動作しない 49 </form> 50 ); 51}; 52 53export default SearchForm; 54
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/05 14:09