Railsで多階層カテゴリーを実装したいと思っております。
都道府県を選択すると、それと関連性のある市区町村が表示される機能です。
(例:茨城県 => つくば市)
自分で一から制作するほどのスキルはないため、下記URLを参考にしながら実装を進めていたところ躓きました。
http://kawahiro.hatenablog.jp/entry/2013/10/26/233051
出ているエラーとしましては、「ArgumentError」で、
cities
1<%= collection_select :city_id, City.where(prefecture_id: prefecture_id), :id, :name %>
恐らく、こちらの記述の部分がおかしいと思うのですが、原因がわかりません。
念の為、関係のありそうな周辺ファイルも添付しておきます。
[ _cities.html.erb ]
cities
1<div class="field"> 2<%= collection_select :city_id, City.where(prefecture_id: prefecture_id), :id, :name %> 3</div>
[routers.rb]
ruoters
1~省略 2 resources :microposts, only: [:create, :destroy] 3 resources :microposts do 4 collection do 5 get :cities_select 6 end 7 end 8end
[ _micropost_form.html.erb ]
micropost
1<%= form_for(@micropost) do |f| %> 2 <%= render 'shared/error_messages', object: f.object %> 3 <div class="field"> 4 <%= f.text_area :content, placeholder: "Compose new micropost..." %> 5 </div> 6 <div class="field"> 7 <%= f.label :prefecture_id,"都道府県" %> 8 <%= f.collection_select :prefecture_id, Prefecture.all, :id, :name, include_blank: "選択してください" %> 9 </div> 10 <div class="field"> 11 <%= f.label :city_id,"市区町村" %> 12 <%= render partial: 'cities', locals: {prefecture_id: Prefecture.first.id} %> 13 </div> 14 <%= f.submit "Post", class: "btn btn-primary" %> 15<% end %>
[ micropost.rb ]
class Micropost < ApplicationRecord belongs_to :user belongs_to :prefecture, optional: true belongs_to :city default_scope -> { order(created_at: :desc) } validates :user_id, presence: true validates :content, presence: true, length: { maximum: 1000 } end
[schema.rb]
schema
1ActiveRecord::Schema.define(version: 2020_08_29_105438) do 2 3 create_table "cities", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| 4 t.integer "prefecture_id" 5 t.string "name" 6 t.datetime "created_at", null: false 7 t.datetime "updated_at", null: false 8 end 9 10 create_table "microposts", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| 11 t.text "content" 12 t.bigint "user_id" 13 t.datetime "created_at", null: false 14 t.datetime "updated_at", null: false 15 t.bigint "prefecture_id" 16 t.index ["prefecture_id"], name: "index_microposts_on_prefecture_id" 17 t.index ["user_id", "created_at"], name: "index_microposts_on_user_id_and_created_at" 18 t.index ["user_id"], name: "index_microposts_on_user_id" 19 end 20 21 create_table "prefectures", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| 22 t.string "name" 23 t.datetime "created_at", null: false 24 t.datetime "updated_at", null: false 25 end 26 27 create_table "users", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| 28 t.string "email", default: "", null: false 29 t.string "encrypted_password", default: "", null: false 30 t.string "reset_password_token" 31 t.datetime "reset_password_sent_at" 32 t.datetime "remember_created_at" 33 t.integer "sign_in_count", default: 0, null: false 34 t.datetime "current_sign_in_at" 35 t.datetime "last_sign_in_at" 36 t.string "current_sign_in_ip" 37 t.string "last_sign_in_ip" 38 t.string "confirmation_token" 39 t.datetime "confirmed_at" 40 t.datetime "confirmation_sent_at" 41 t.string "unconfirmed_email" 42 t.integer "failed_attempts", default: 0, null: false 43 t.string "unlock_token" 44 t.datetime "locked_at" 45 t.datetime "created_at", null: false 46 t.datetime "updated_at", null: false 47 t.string "provider" 48 t.string "uid" 49 t.string "username" 50 t.string "image" 51 t.text "profile" 52 t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true 53 t.index ["email"], name: "index_users_on_email", unique: true 54 t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true 55 t.index ["unlock_token"], name: "index_users_on_unlock_token", unique: true 56 end 57 58 add_foreign_key "microposts", "prefectures" 59 add_foreign_key "microposts", "users" 60end 61
[micropost.coffee]
$(document).on 'change', '#company_ms_pref', -> $.ajax( type: 'GET' url: '/microposts/cities_select' data: { ms_pref_id: $(this).val() } ).done (data) -> $('#cities_select').html(data)
[microposts_controller.rb]
~省略 def cities_select if request.xhr? render partial: 'cities', locals: {prefecture_id: params[:prefecture_id]} end end
ただ、どこを間違えているのかの見当がつかないあたり、自身のスキルが不足していることも重々承知しております。
ですので、エラーの解決法ではなく、「〜あたりがおかしい、〇〇についてもっと勉強すればわかる」等、抽象的なアドバイスでも、とても嬉しいです。
よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー