vue の this.xxx が空になってしまいます。
下記のコードの「console.log(this.markers)」を確認すると結果が「Array(0)」になってしまいます。
しかし chrome の拡張機能で markers の結果を見ると axios のレスポンスの通りに Array(3)となっております。(※画像)
console.log で「Array(3)」と言う結果を取得するにはどのようにしたらよいでしょうか。
どなたかご教授頂けましたら幸いです。
よろしくお願いいたします。
js
1export default { 2 data() { 3 return { 4 map: null, 5 markers: [], 6 } 7 }, 8 mounted (){ 9 this.drawMap(); 10 }, 11 methods: { 12 fetchDatas: async function (){ 13 //初期データ取得する。 14 axios.get( 15 '/map/api/points/' 16 ).then( 17 response => (this.markers = response.data) 18 ).catch(function (error) { 19 alert("データの取得に失敗しました。") 20 }) 21 alert(this.markers) 22 }, 23 drawMap: async function () { 24 await this.fetchDatas() 25 //マップを描画する。 26 console.log(this.markers) 27 let timer = setInterval(() => { 28 if(window.google){ 29 clearInterval(timer); 30 this.map = new window.google.maps.Map(document.getElementById("map"), { 31 center: {lat: this.markers[0]["lat"], lng: this.markers[0]["lng"]}, 32 zoom: 15 33 }); 34 } 35 },500) 36 } 37 } 38}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/05/11 22:14