親コンポーネントで外部のAPI叩いて得た値[wordRanking]を子コンポーネントで、展開し、表示させるプログラムを書いています。
1回目は表示されるのですが、2回目以降表示内容が更新されません。
Vueファイル
・AppPage.vue : 親コンポーネント、API通信はここでおこなう
・Ranking.vue : 親からもらったwordRankingを表示する
・InputWord : API通信するために必要な入力値用のフォームとsubmitボタン
やってみたいが、やり方がわからない解決法
(1)子コンポーネントに@Watchつけて、wordRankingを更新する
(2)更新した時のイベントハンドラを追加する
get+watchかイベントハンドラの追加の2択かなと考えております。
2回目以降も更新されるようにするにはどうすればいいでしょうか?
そもそも設計自体がよくないのでしょうか。
ご助言いただけると幸いです。
Vue
1<template> 2 <div class="appPage"> 3 <h1>楽天商品検索+YahooテキストAPIを使った簡易アプリ</h1> 4 <InputWord @click="receiveData"/> 5 <div v-if="show"> 6 <Ranking :word-ranking="wordRanking"/> 7 </div> 8 </div> 9</template> 10 11<script lang="ts"> 12import { Component,Prop,Vue } from "vue-property-decorator"; 13import Methods from '../server/methods'; 14import Ranking from "@/components/Ranking.vue"; 15import InputWord from "@/components/InputWord.vue"; 16import Graph from "@/components/Graph.vue"; 17 18@Component({ 19 components: { 20 InputWord,Ranking,Graph 21 } 22}) 23 24export default class AppPage extends Vue { 25 public input= ""; 26 public show = false; 27 public wordRanking!:any; 28 29 30 public async receiveData(input:string){ 31 this.input = input; 32 if(!this.input){ 33 alert("キーワードを入力してください"); 34 }else if(this.input.length > 64){ 35 alert("検索文字数が多すぎます"); 36 }else{ 37 const response = await Methods.sendParams(this.input); 38 this.wordRanking = response.data; 39 console.log(this.wordRanking); 40 if(Object.keys(this.wordRanking).length==0){ 41 alert("商品が見つかりませんでした"); 42 }else{ 43 this.show = true; 44 } 45 } 46 } 47}
Vue
1<template> 2 <div class="ranking"> 3 <ol> 4 <li v-for="(item,index) in limitCount" :key="index">{{item.word}}</li> 5 </ol> 6 </div> 7</template> 8 9<script lang="ts"> 10import { Component,Prop,Vue,Watch } from "vue-property-decorator"; 11 12@Component 13export default class Ranking extends Vue { 14 @Prop() 15 public wordRanking!:any; 16 17 @Prop() 18 public input!:string; 19 20 get limitCount(){ 21 return this.wordRanking.slice(0,10); 22 } 23} 24 25 26</script> 27 28<style scoped> 29</style>
Vue
1<template> 2 <div class="inputWord"> 3 <input id="word" v-model="inputText" type="text" placeholder="キーワードを入力"> 4 <input type="submit" value="検索" @click="setData"/> 5 </div> 6</template> 7 8<script lang="ts"> 9import { Component,Vue,Emit, Prop } from "vue-property-decorator"; 10 11@Component 12export default class InputWord extends Vue { 13 public inputText = ""; 14 15 @Emit() 16 public click(input:string){ 17 console.log(input); 18 } 19 20 public setData(){ 21 this.click(this.inputText); 22 } 23} 24 25</script> 26 27<style scoped> 28</style>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。