0
親コンポーネントのaxiosパッケージを使用してajaxリクエストを作成し、返された配列を子コンポーネントに渡して配列を反復してレイアウトを構築します。私は次のコードを持っています。Vue.js:APIからデータを取得し、子コンポーネントに渡す(簡単な例)
親はこれです:
<script>
import Box from './Box';
import axios from 'axios';
export default {
name : "messagespainel",
data: function() {
return {messsages: []} //should I use data to pass the ajax returned array to the child
},
props: ['messages'] //should I use props to pass the ajax returned array to the child
}
mounted :
{
axios.get('http://www.omdbapi.com/?s=star&apikey=mykey').then(response => { this.messsages = response.data.Search});
}
</script>
<template>
<div>
<box messages="this.messages"></box> My mind bugs at this point. How to refer to messages?
</div>
</template>
子供はこれです:あなたの親で
<script>
export default {
name: "box",
props: ['mensagens']
}
</script>
<template>
<div>
<div v-for="message in messages" >
{{ message}}
</div>
</div>
</template>
<style>
</style>
回答が非常に明確になりました。 –
子供の場合、divのプロパティをどのようにデータバインドできますか? {{property}}は機能していません! –
@DiegoAlves子がループしているとき、メッセージのループが '' v-for = "メッセージであると仮定すると、' {{message.property}} 'になります。 – Bert