ActiveModelを使用してのデータベース保存ができません。
controller内ではpermitを使用して定義しています。
ご協力よろしくお願いします。
orders_controller
1class OrdersController < ApplicationController 2 before_action :authenticate_user! 3 def index 4 @order = OrderDonation.new 5 @item = Item.find(params[:item_id]) 6 end 7 8 def create 9 @item = Item.find(params[:item_id]) 10 @order = OrderDonation.new(order_params) 11 if @order.valid? 12 Payjp.api_key = "sk_test_9963bfeecc996d98b54e1ab3" 13 Payjp::Charge.create( 14 amount: @item[:price], # 商品の値段 15 card: order_params[:token], # カードトークン 16 currency: 'jpy' # 通過の種類(日本円) 17 ) 18 @order.save 19 binding.pry 20 redirect_to root_path 21 else 22 render 'index' 23 end 24 end 25 26 private 27 28 def order_params 29 params.require(:order_donation).permit(:post_id, :prefecture_id, :city, :address, :buildingname, :tel, :token).merge(user_id: current_user.id, item_id: params[:item_id]) 30 end 31end
order_donation.rb(model)
1class OrderDonation 2 include ActiveModel::Model 3 4 attr_accessor :post_id, :prefecture_id, :city, :address, :buildingname, :tel, :orders_id, :user_id, :item_id, :token 5 6 with_options presence: true do 7 8 validates :post_id, format: {with: /\A[0-9]{3}-[0-9]{4}\z/, message: "is invalid. Include hyphen(-)"} 9 validates :prefecture_id, numericality: { other_than: 1 } 10 validates :city 11 validates :address 12 validates :buildingname 13 validates :tel 14 end 15 16 def save 17 orders = Order.create(user_id: user_id, item_id: item_id) 18 address = Address.create(post_id: post_id, prefecture_id: prefecture_id, city: city, address: address, buildingname: buildingname, tel: tel, orders_id: orders.id ) 19 end 20end 21
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。