前提・実現したいこと
現在 Ruby on rails 6 に少しずつVue.jsを導入しています。
railsのモデルから受け取った配列になっているデータをVue.jsに送りたいのですが、
そのやり方がいまいち分からず躓いています。
試してみたこと
places_controller.rb
ruby
1 def show 2 @place = Place.find(params[:id]) 3 end
show.html.erb (placeテーブルにはnameとdescriptionのカラムがあります)
ruby
1<div 2 class="js-places-show" 3 data-name="<%= @place.name %>" 4 data-description="<%= @place.description %>" 5></div>
app/javascript/packs/places.js
vue
1import Vue from 'vue' 2import PlacesShow from '../components/places/PlacesShow.vue' 3 4document.addEventListener('DOMContentLoaded', () => { 5 const el = document.querySelector('.js-places-show') 6 7 if (el == null) { 8 return 9 } 10 11 const { name, description } = el.dataset 12 13 const props = { 14 name: name, 15 description: description, 16 editPlacePath: editPlacePath, 17 } 18 19 new Vue({ 20 el: el, 21 render: h => h(PlacesShow, { props }) 22 }).$mount() 23})
app/javascript/components/places/PlacesShow.vue
vue
1<template> 2 3<div class="place-show"> 4 <table class="table table-borderless"> 5 <tr> 6 <th>場所名</th> 7 <th> {{ name }} </th> 8 </tr> 9 <tr> 10 <th>概要</th> 11 <th> {{ description }} </th> 12 </tr> 13 </table> 14</div> 15 16</template> 17 18<script> 19export default { 20 name: 'PlacesShow', 21 props: { 22 name: { 23 type: String, 24 required: true 25 }, 26 description: { 27 type: String, 28 required: true 29 } 30 } 31} 32</script> 33 34<style scoped> 35</style>
例えばshowアクションの場合はモデルから取ってくるレコードが1つなのでこのようにしてVue.jsのdataオプションに渡すことができて上手くいきました。
ですが、indexアクションのようにレコードが複数あり配列になっているものはどのような形にしてdataにすればいいのかが全く分からない状態で詰んでしまっています。
やりたいこと
places_controller.rb
ruby
1 def index 2 @places = Place.all 3 end
index.html.erb
ruby
1↓ここの書き方をどのようにすればいいのでしょうか。showアクションだったら@place.nameでそのまま入れ子になっているnameを渡せたのですが。。。 2<div 3 class="js-places-index" 4 data-places="<%= @places %>" 5></div>
indexアクションの場合はレコードが1つではなく、Place.allとしているので複数のレコードが入っている状態です。
この状態で上記のようにdata属性に入れVue.jsに渡してV-forでplace in placesみたいな感じでplace.nameなどを表示したいのですが、
どのようにしてVue.jsに値を渡せばいいのでしょうか。
またその際のVueの書き方などもご教授いただけたら嬉しいです。
当方初心者でして、質問も初めてで至らない部分が多々あると思います。
質問の仕方に足りない部分などありましたら容赦無くご指摘いただければ幸いです。
よろしくお願い致します。
引用
補足情報(FW/ツールのバージョンなど)
rails6
ruby2.6
Vue.js
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/29 23:59