我有一个网络应用程序,用户可以通过 Devise 注册并发布图片供其他人投票。
我正在尝试将用户用户名附加到他们上传的照片上,但我无法终生弄清楚如何。
我想出了如何通过隐藏字段将 Devise user_id 输入表单,但用户名只是在数据库中显示为空白字段(不是NULL
,只是空白)。
如何从 Devise 获取用户名而不是 user_id 来发布?
我有所有合适的belongs_to
和has_many
模型。
表格。
<% if current_user %>
<%= simple_form_for Picture.new, :remote => true, :html => { :class => "form-horizontal" } do |f| %>
<%= f.input :title %>
<%= f.input :image, :as => :image_preview, :label => false, :input_html => {:preview_version => :thumb} %>
<div class="control-group">
<div class="controls">
<a href="#" class="btn" id="file">Choose a File</a>
</div>
</div>
<%= f.input :desc, :as => :text, :input_html => { :cols => 20, :rows => 3 }, :label => 'Description' %>
<%= f.hidden_field :user_id %>
<%= f.hidden_field :username %>
<div class="control-group">
<div class="controls">
<div class="btn-group">
<%= f.submit "Add Picture", :class => 'btn btn-primary' %>
<button class="btn btn-danger" id="form-cancel">Cancel</button>
</div>
</div>
<% end %>
图片控制器.rb
def create
#This line inserts the user_id into the database
@picture = current_user.pictures.create!(params[:picture])
@picture.save
respond_to do |format|
format.html { redirect_to pictures_url, notice: 'Thanks for your picture!' }
format.js
end
end