TypeError: Cannot read property 'date' of undefined
v-for で天気情報を表示しています。
同タグ内の v-bind:key でキーに指定した、 date が読めないとのエラーです。動作に問題は無いのですが、conspleに毎回このエラーが表示されるので直したいです。
地域が選択 → 情報をAJAXで取得 → infos.dateが作られる
という順番なので、最初の時点ではdateが無いことが原因と考えています。
この解決策がわかる方がいらっしゃいましたらお願いします。
vue
1<template> 2 <div class="text-center"> 3 <div class="py-5 form-group"> 4 <h1 class="mb-4">天気情報</h1> 5 <label for="select">天気を見たい地域を選んでください</label> 6 <select 7 id="select" 8 class="form-control" 9 v-model="woeid" 10 @change="getWeather" 11 > 12 <option value="1118108">札幌</option> 13 <option value="1118129">仙台</option> 14 <option value="1118370">東京</option> 15 </select> 16 </div> 17 18 <b-card-group cols="3" cols-sm="4" cols-md="6" cols-lg="7"> 19 <b-card v-for="info of infos" v-bind:key="info.date"> 20 <b-card-title>{{ info.date }}</b-card-title> 21 <b-card-text> 22 <ul> 23 // 略 24 </ul> 25 </b-card-text> 26 </b-card> 27 </b-card-group> 28 </div> 29</template> 30 31<script> 32import axios from "axios"; 33 34export default { 35 data() { 36 return { 37 woeid: null, 38 infos: [], 39 }; 40 }, 41 methods: { 42 43 // 略 44 45 getDataUrl.forEach((value, key) => { 46 axios 47 .get(value) 48 .then( 49 function (response) { 50 var weather = response.data[0]; 51 52 this.$set(this.infos, key, { 53 date: weather.applicable_date, //日付 54 max_temp: weather.max_temp, //最高気温 55 min_temp: weather.min_temp, //最低気温 56 wind_speed: weather.wind_speed, //風速 57 weather_state: weather.weather_state_name, //天候 58 humidity: weather.humidity, //湿度 59 image_url: 60 "https://www.metaweather.com/static/img/weather/ico/" + 61 weather.weather_state_abbr + 62 ".ico", //天気アイコン 63 }); 64 }.bind(this) 65 ) 66 .catch(function (error) { 67 console.log(error); 68 }); 69 }); 70 }, 71 }, 72 filters: { 73 // 略 74 }, 75}; 76</script> 77 78<style> 79/* 略 */ 80</style>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。