1

目前在我的 Rails 应用程序中,我有用户、样本和瓶子。

样本属于瓶子和提交它的用户。瓶子不属于用户。

class Swatch < ActiveRecord::Base
  mount_uploader :swatch, SwatchUploader
  belongs_to :user
  belongs_to :bottle
end

class Bottle < ActiveRecord::Base
  has_many :swatches
end

class User < ActiveRecord::Base
  has_many :swatches
end

目前,用户可以从瓶子的展示页面上传瓶子的新样本。

这是样本控制器:

class SwatchesController < ApplicationController
   def create
    @bottle = Bottle.find(params[:bottle_id])
    @user = current_user
    @swatch = @bottle.swatches.create(swatch_params)
    redirect_to bottle_path(@bottle)
  end

  private
    def swatch_params
      params.require(:swatch).permit(:swatch, :user_id, :bottle_id)
    end
end

哈姆勒:

= form_for([@bottle, @bottle.swatches.build]) do |f|
    = f.label :swatch
    = f.file_field :swatch
    = f.submit

使用此设置,除非我将当前用户的 ID 作为隐藏字段传递,否则表单将无法工作。但我知道这是不好的做法,我想避免这种情况。

所以我的问题是:如何通过控制器传递bottle_id当前用户和当前用户?user_id

4

2 回答 2

7

为什么需要current_user通过表格?在您的控制器中,如果您想设置user_idcurrent_userid,只需这样做:

应用程序/模型/swatch.rb

class Swatch < ActiveRecord::Base
  mount_uploader :swatch, SwatchUploader
  belongs_to :user
  belongs_to :bottle

  def set_user!(user)
    self.user_id = user.id

    self.save!
  end
end

应用程序/控制器/swatches_controller.rb

class SwatchesController < ApplicationController
  def create
    @bottle = Bottle.find(params[:bottle_id])

    @user = current_user

    @swatch = @bottle.swatches.new(swatch_params)
    @swatch.set_user!(current_user)

    redirect_to bottle_path(@bottle)
  end

  private

  def swatch_params
    params.require(:swatch).permit(:swatch, :bottle_id)
  end
end
于 2013-11-08T19:22:24.787 回答
2

你不能只为用户使用 current_user 吗?对于 bottle_id,我想最好的办法是将瓶子放在地址中,因为你正在为瓶子创建样本,你的 url 可能是这样的:

/bottles/<id of bottle>/swatches

你的路线应该是

post "/bottles/:bottle_id/swatches", to: 'swatches#create'

然后,在您的控制器 SwatchesController 上,您可以执行

def create
  bottle = Bottle.find(params[:bottle_id])
  swatch = current_user.swatches.create params[:swatch].merge(bottle: bottle)
  if swatch.new_record?
    #something if not saved
  else
    #something if saved
  end
end
于 2013-11-08T19:22:04.203 回答