前提・実現したいこと
JavaScriptのフレームワークであるReactでぐるなびのレストラン検索APIを叩いてデータを得たいです。レストランのデータはReduxを用いて状態管理しています。またaxiosを使ってAPIを叩いています。得たデータをReduxのstateのitemsにAPIで取得してきたjsonデータを入れます。このデータを使用して画面に表示させたいのですがエラーがでてしまいます。
発生している問題・エラーメッセージ
APIで取得してきたjsonデータを他のclassで用いるために
const restranItems = RestranListReducer.items.rest;
で受け取り
for (let index=0; index<50; index++) {
restranCards.push(<RestranCard key={index} {...restranItems[index]}/>);
}
でRestranCard関数にpropsとして渡そうとしたのですが
TypeError: Cannot read property '0' of undefined
というエラーがでてしまいました。
該当のソースコード
JavaScript
1const initialState = { 2 isFetching: false, 3 items: [], 4}; 5const RestranListReducer = (state = initialState, action) => { 6 switch (action.type) { 7 case actionTypes.GET_RESTRAN_REQUEST: 8 return { 9 ...state, 10 isFetching: true, 11 items: [], 12 }; 13 case actionTypes.GET_RESTRAN_SUCCESS: 14 return { 15 ...state, 16 isFetching: false, 17 items: action.items, 18 }; 19 case actionTypes.GET_RESTRAN_FAILURE: 20 return {
JavaScript
1class RestranList extends React.Component { 2 render() { 3 const {RestranListReducer} = this.props; 4 const { classes } = this.props; 5 6 const restranItems = RestranListReducer.items.rest; 7 let renderCards = []; 8 let restranCards =[]; 9 let emptyCards =[]; 10 for (let index=0; index<50; index++) { 11 restranCards.push(<RestranCard key={index} {...restranItems[index]}/>); 12 emptyCards.push(<RestranCard key={50+index} empty="true"/>); 13 } 14 renderCards.push(restranCards); 15 renderCards.push(emptyCards);
補足情報(FW/ツールのバージョンなど)
ぐるなびのレストラン検索APIで返ってくるjsonデータは以下の様です。
{
"@attributes": {
"api_version": "v3"
},
"total_hit_count": 3781,
"hit_per_page": 10,
"page_offset": 1,
"rest": [
{
"@attributes": {
"order": 0
},
"id": "ha2k402",
"update_date": "2020-03-22T02:30:21+09:00",
"name": "食べ飲み放題2500円×海鮮個室居酒屋 宝船すすきの本店",
"name_kana": "タベノミホウダイニセンゴヒャクエンカイセンコシツイザカヤ タカラブネススキノホンテン",
"latitude": "43.054774",
"longitude": "141.350541",
"category": "完全個室で味わう和食",
"url": "https://r.gnavi.co.jp/3t1m9ur60000/?ak=7DPxthAIsmtbKvJfuRHsrsUf6Y6ypyZF3zIMUJ6LbvU%3D",
"url_mobile": "http://mobile.gnavi.co.jp/shop/ha2k402/?ak=7DPxthAIsmtbKvJfuRHsrsUf6Y6ypyZF3zIMUJ6LbvU%3D",
"coupon_url": {
"pc": "https://r.gnavi.co.jp/3t1m9ur60000/coupon/",
"mobile": "http://mobile.gnavi.co.jp/shop/ha2k402/coupon"
},
"image_url": {
"shop_image1": "https://rimage.gnst.jp/rest/img/3t1m9ur60000/t_0noa.jpg",
"shop_image2": "https://rimage.gnst.jp/rest/img/3t1m9ur60000/t_0no9.jpg",
"qrcode": "https://c-r.gnst.jp/tool/qr/?id=ha2k402&q=6"
},
"address": "〒064-0804 北海道札幌市中央区南4条西5-4 シャンゼリゼビルB1",
"tel": "050-3463-5358",
"tel_sub": "050-3163-8045",
"fax": "",
"opentime": " ディナー:16:00~24:00(L.O.23:30、ドリンクL.O.23:30)",
"holiday": "年中無休",
以下略
あなたの回答
tips
プレビュー