質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
Vue.js

Vue.jsは、Webアプリケーションのインターフェースを構築するためのオープンソースJavaScriptフレームワークです。

Q&A

解決済

1回答

1507閲覧

【Vue.js】親の値が変わったら子の値も更新したい

smilax

総合スコア23

Vue.js

Vue.jsは、Webアプリケーションのインターフェースを構築するためのオープンソースJavaScriptフレームワークです。

0グッド

0クリップ

投稿2020/10/30 02:33

Propsで子コンポーネントに値を渡しているのですが、API通信で取得したデータを渡してあげたいです。
しかし、初期値で子コンポーネントが描写されてしまっているので、途中で親の値が変わっても子コンポーネントの値は変わらないです。
この問題点をどう解決するべきか教えていただきたいです。

videoURLが該当する部分です。

vue.js

1<template lang="pug"> 2 .receipt-top 3 //- Notification( :name="name" :videoUrl="videoUrl") 4 Video( :videoUrl="videoUrl" :videoType="this.$route.query.Type") 5</template> 6 7<script lang="ts"> 8import Vue from "vue"; 9import RoundRectButton from "@/components/RoundRectButton.vue"; 10import Notification from "./components/Notification.vue"; 11import Video from "./components/Video.vue"; 12import VideoEntity from "@/entities/video"; 13import Talent from "@/entities/talent"; 14 15export type DataType = { 16 videoUrl: string; 17 name: string; 18 type: string | any; 19}; 20export default Vue.extend({ 21 components: { 22 RoundRectButton, 23 Notification, 24 Video, 25 }, 26 data(): DataType { 27 return { 28 videoUrl: "", 29 name: "", 30 type: this.$route.query.Type, 31 }; 32 }, 33 created() { 34 this.createVideoUrl(); 35 this.getTalent(); 36 }, 37 methods: { 38 async createVideoUrl() { 39 const talId: any = this.$route.query.TalentID; 40 const reqId: any = this.$route.query.RequestID; 41 const type: any = this.$route.query.Type; 42 const video: VideoEntity = { 43 talentID: talId, 44 requestID: reqId, 45 type: type, 46 }; 47 try { 48 this.videoUrl = await this.$repositories.VideoRepository.createVideoUrl(video); 49 } catch { 50 this.$router.replace("/"); 51 } 52 }, 53 async getTalent() { 54 const id: any = this.$route.query.talentID; 55 const talent: Talent = await this.$repositories.TalentRepository.getTalentByID(id); 56 this.name = talent.talentName; 57 }, 58 }, 59}); 60</script>

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

こういうケースはvuexを使うべきです。
vuex

慣れてしまえば、もの凄く便利なツールです。
親でAPI通信をして、データを取得し、他のコンポーネントでその情報の値を参照すればよいのです。
最初は、PropやらEmitを使っていましたが、今はほとんどVuexを使用しています。

投稿2020/10/31 19:24

takochan1192

総合スコア100

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問