コンポーネント化したvue.js+axiosで定期的に取得したデータを更新したいのですが、動的に取得したデータがHTMLに反映されません。
何が原因かご教示願えませんでしょうか。
該当のソースコード
vue,
1 2<!-- 説明に表示部分ソース追加(2021/3/3付) --> 3<template> 4 <section class="container"> 5 <v-app> 6 <pre>flg1={{flg1}}</pre> 7 <template v-for="(dt, i) in arrDt"> 8 <template v-if="name=='TEST1'"> 9 <gcmarker message="dt.aa" title="dt.bb" :left="l" :top="t" :key="i" /> 10 </template> 11 </template> 12 <hr> 13 <pre>[{{now}}]</pre> 14 <router-link to="/other">Go to other</router-link> 15 16 </v-app> 17 </section> 18</template> 19 20 21<script> 22import gcmarker from './gcmarker.vue'; 23const axios = require('axios'); 24 25export default { 26 components: { gcmarker }, 27 data:function(){ 28 console.log('-----'); 29 return { 30 title:'Hello', 31 message:'this is message', 32 now:'wait... ', 33 flg1:'', 34 arrDt:{}, 35 } 36 }, 37 created:function(){ 38 setInterval( 39 ()=>{ 40 console.log('++++'); 41 var d = new Date(); 42 this.now = d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds(); // <--これは毎回更新される 43 44 axios.get('http://localhost:8080/api/getapi/') 45 .then((response)=>{ 46 console.log('////'); //<-- 通る 47 var d = new Date(); 48 this.$data.flg1=d.getSeconds(); //<--代入しているが画面上に反映されない 49 this.$data.arrDt=response.Data; 50 if(response.data.length>0){ 51 console.log(''); 52 console.log(response.data.length); //<--件数は「2」で取れている 53 } 54 console.log(' ////'); //<-- 通る 55 }); 56 },3000 57 ); 58 }, 59}; 60</script>
試したこと
https://teratail.com/questions/114629
上記のページを参考に、外部のdataに$が抜けていると思い、$を付けましたが
現象は解消されませんでした。
(flg1はフラグとして生成した変数ですが、更新確認のため一時的に秒を代入しています。ご了承ください)
補足情報(FW/ツールのバージョンなど)
@vue/cli 4.5.11
(vue.jsではなくnuxt環境でした。失礼しました)
@nuxt/cli v.14.12
node-v14.15.4-x64.msi
vueを明示的にインスタンス化したものを格納した変数とコンポーネント化したvueのthisの理解が浅いため、意図の不明なコードがあるかもしれません。ご容赦ください。
回答1件
あなたの回答
tips
プレビュー