### 実現したいこと
ruby on rails 初心者です。
views/orders/index.html
の注文確定ボタンを押下すると、ordersテーブルとaddressesテーブルに
データが保存される仕組みを作成しております。
※
addressesテーブル 対 ordersテーブル= 1 対 多 (一度の商品購入で2つ以上の商品を購入するケースもあると想定)
productsテーブル 対 ordersテーブル = 1 対 多
### エラー文
/app/models/order.rb:2: syntax error, unexpected ':', expecting end belongs_to: address ^ /app/models/order.rb:3: syntax error, unexpected ':', expecting end belongs_to: product ^ Extracted source (around line #2): 1 class Order < ApplicationRecord 2 belongs_to: address 3 belongs_to: product 4 end
###コード
(views/orders/index.html.erb) ※該当部分 <%= form_for(@order) do |f|%> <% @cart_items.each do |cart_item|%> <% product = Product.find_by(id: cart_item.product_id) %> <%= f.hidden_field :product_id, value: product.id %> <%= f.hidden_field :quantity, value: cart_item.quantity %> <% end%> <%= f.fields_for :addresses do |a|%> <%= a.hidden_field :user_id, value: current_user.id %> <%= a.hidden_field :last_name, value: session[:last_name] %> <%= a.hidden_field :first_name, value: session[:first_name] %> <%= a.hidden_field :furi_last_name, value: session[:furi_last_name] %> <%= a.hidden_field :furi_first_name, value: session[:furi_first_name] %> <%= a.hidden_field :postal_code, value: session[:postal_code] %> <%= a.hidden_field :prefecture, value: session[:prefecture] %> <%= a.hidden_field :address, value: session[:address] %> <%= a.hidden_field :store, value: session[:store] %> <%= a.hidden_field :how_to_pay, value: session[:how_to_pay] %> <% end %> <p><%= f.submit "注文確定", class: 'btn' %></p> <% end %>
(controllers/orders_controlles.rb) class OrdersController < ApplicationController def index cart = Cart.find_by(user_id: current_user.id) @cart_items = CartItem.where(cart_id: cart.id) @product= Product.find_by(id: current_user.id) @address = Address.new @address.orders.build end def create @address = Address.new(address_params) if @address flash[:success] = "購入が完了しました。" redirect_to root_path else render "index" end end private def address_params params.require(:address).permit(:user_id, :last_name, :first_name, :furi_last_name, :furi_first_name, :postal_code, :prefecture, :address, :store, :how_to_pay, address_attributes: [ :product_id, :quantity ]) end end
(models/product.rb)※一部記載 class Product < ApplicationRecord has_many :cart_items has_many :orders end
(models/order.rb) class Order < ApplicationRecord belongs_to :address belongs_to :product end
(models/address.rb) class Address < ApplicationRecord belongs_to :order accepts_nested_attributes_for :orders end
###補足情報(FW/ツールのバージョンなど)
ruby 2.6.6
rails '~> 5.2.4', '>= 5.2.4.3'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/11 01:26
2020/09/11 01:35 編集