◾️実現したいこと
セレクトボックスの値を選択後、ページ遷移して一覧画面に遷移して、urlに渡したidに対する
postテーブルのcategory_idに一致するpostコントローラーの値を表示させたいのですが、表示方法がわかりません。アドバイスをいただきたいです。
_idフォルダの後に_name.vueファイルを作成して表示させようとしてのですが表示できませんでした。
_id.vueのプラウザ上のconsoleでは{post: Array(2)} と表示されています。
◾️ソースコード
<template> <v-row justify="center"> <h2>URLパラメータ取得結果:route.params</h2> {{ this.$route.params.id }}<br> {{this.$route.params.name}} {{ this.$route.params.content }}<br> console.log(param.name) </v-row> </template> <script> import axios from 'axios'; export default { created(){ axios.get(`http://127.0.0.1:8000/api/top/${this.$route.params.id}`) .then(response => { this.posts = response.data.post this.id = response.data.id this.name= response.data.name console.log(response.data) }); console.log(name) }, data () { return { ![ods: {](4340fe117615f55d2792d6a49ec7c3be.jpeg)ams:'', post:[], id:'', name:'', content:'', } }, methods: { returnPage() { this.$router.go(-1); }, } } </script>nuxt.js
1<template> 2<body> 3<div class="title"> 4 <p>なら</p> 5</div> 6 <div class="page_image"> 7 <img src="~/assets/image/shika.jpg"> 8 </div> 9 <div class="search"> 10 <select v-model="category_id" v-on:change="jump(category_id)"> 11 12 <option value="">選択なし</option> 13 <option v-for="category in categories" 14 :value= "category.id" > 15 {{category.id}} 16 {{ category.name}} 17 </option> 18 </select> 19 20 21 </div> 22 </div> 23</div> 24</div> 25</body> 26</template> 27 28<script> 29import axios from 'axios'; 30export default{ 31data(){ 32 return{ 33 category_id:'', 34 category_name:'', 35 categories:[], 36 category:[], 37 post:[], 38 id:'', 39 name:'', 40 } 41}, 42 created(){ 43 44 45 }, 46 methods:{ 47 getCategories: function(){ 48 axios.get(`http://127.0.0.1:8000/api/posts`) 49.then(response => { 50 this.categories = response.data.categories 51 console.log(response.data) 52 }); 53 }, 54 jump:function(id){ 55 this.$router.push({ path: `top/${id}`}); 56 console.log(id) 57 } 58 }, 59 60} 61</script> 62```nuxt.js _id.vue
laravel
1
public function find(Request $request,$id)
{
$post= Post::all();
return response()->json(['post'=>$post],200);
}
api.php
1
Route::get('/top/{id}','PostController@find')
あなたの回答
tips
プレビュー