前提・実現したいこと
実現したい事
- 検索フォームに文字を入力する度外部APIからデータを取得し検索結果を表示(上書き)させたい
前提
- onChangeを使い入力する度に外部APIのデータを取得するまではできている
React Next.js共に初めて4日目の初心者です、拙いコードですが宜しくお願いいたします
発生している問題・エラーメッセージ
onChengeの中にAPIを取得する関数を入れて入力するたびにデータは取得できているがフロントに反映させる方法が思いつかないです。
該当のソースコード
javascript
1import Layout from '../components/layout' 2import styles from '../styles/Home.module.css' 3import fetch from 'node-fetch' 4import Image from 'next/image' 5import React, {useState} from 'react' 6 7 8export async function getStaticProps() { 9 const response = await fetch( 10 'https://restcountries.eu/rest/v2/all' ) 11 const postList = await response.json() 12 return{ 13 props: { 14 postList 15 } 16 } 17} 18 19export async function search(event) { 20 const searchRes = await fetch( 21 `https://restcountries.eu/rest/v2/name/${event.target.value}` ) 22 const searchList = await searchRes.json() 23 console.log(postList) 24 return{ 25 props: { 26 searchList 27 } 28 } 29} 30 31 32 33export default function Home( {searchList, postList} ) { 34 const [name, setName] = useState(''); 35 const handleName = (event) => { 36 setName(event.target.value) 37 search(event) 38 } 39 return ( 40 <Layout> 41 <div className={styles.header}> 42 <div className={styles.title}>Where in the world?</div> 43 </div> 44 <div className='search'> 45 <input type="text" value={name} onChange={(event) => handleName(event)} placeholder="Search for a country..." className={styles.search_field}/> 46 </div> 47 <div className={styles.country_container}> 48 {postList.map((List) => { 49 return( 50 <div className={styles.country_card}> 51 <div className={styles.card_top}> 52 <Image src={List.flag} width={264} height={160} className={styles.flag} /> 53 </div> 54 <div className={styles.card_bottom}> 55 <div className={styles.country_name}> 56 {List.name} 57 </div> 58 <ul className={styles.country_detail}> 59 <li><span className={styles.key}>Population:</span>{Number(List.population).toLocaleString()}</li> 60 <li><span className={styles.key}>Region:</span>{List.region}</li> 61 <li><span className={styles.key}>Capital:</span>{List.capital}</li> 62 </ul> 63 </div> 64 </div> 65 ) 66 })} 67 </div> 68 </Layout> 69 ) 70} 71
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/27 16:07