我使用带有回形针的devise gem来处理身份验证和上传图片。问题是我在同一模型上使用过两次回形针来存储两张图片(让我们调用那些回形针列:avatar,:superbadge),我的模型名称是User。
现在,当我选择上传两张图片时,我的rails应用程序会忽略我选择的第一个文件,而是使用第二个选择的文件并将其保存在第一个回形针列中,将第二个回形针列留空。我该如何解决?
我的应用程序控制器:
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
before_action :configure_devise_permitted_parameters, if: :devise_controller?
protected
def configure_devise_permitted_parameters
registration_params = [:name, :email, :password, :password_confirmation,:avatar,:superstarbadge]
if params[:action] == "update"
devise_parameter_sanitizer.for(:account_update) {
|u| u.permit(registration_params << :current_password)
}
elsif params[:action] == "create"
devise_parameter_sanitizer.for(:sign_up) {
|u| u.permit(registration_params)
}
end
end
end
我的User.rb型号:
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable, :validatable
has_attached_file :avatar, :styles => { :small => "100x100>" }
validates_attachment_content_type :avatar, :content_type => /\Aimage\/.*\Z/
has_attached_file :superstarbadge, :styles => { :tiny => "100x100>" }, :default => "superbadge.jpg"
validates_attachment_content_type :superstarbadge, :content_type => /\Aimage\/.*\Z/
has_many :questions
has_many :answers
def to_s
email
end
end
我的form_for用于创建具有设计宝石的新用户(我使用超薄模板语言而不是erb):
h1 Sign up
= form_for(resource, as: resource_name, url: registration_path(resource_name), :html => { :multipart => true }) do |f|
= devise_error_messages!
.field
label= f.label :name
= f.text_field :name, autofocus: true
.field
label= f.label :email
= f.email_field :email, autofocus: true
.field
label= f.label :password
= f.password_field :password, autocomplete: 'off'
.field
label= f.label :password_confirmation
= f.password_field :password_confirmation, autocomplete: 'off'
.field
= f.label :avatar
= f.file_field :avatar
.field
= f.file_field :avatar
div
= f.submit "Sign up"
答案 0 :(得分:4)
表单中的 file_field 都指的是avatar
字段,因此当您提交表单时,第二个选择的文件(即 latest )保存为avatar
。 <{1}}没有 file_field ,因此永远不会被保存。
superstarbadge
需要一个 file_field ,avatar
需要一个 file_field 。因此,您的代码应如下所示:
superstarbadge