我尝试在rails 4中使用carrierwave保存图像文件,但是当提交按钮时单击数据库是否回滚???为什么?
如果我不选择要上传的图片而只发送字符串,一切正常,但如果我发送图像文件,我会收到这样的错误:
TypeError: can't cast ActionDispatch::Http::UploadedFile to string: INSERT INTO "items" ("created_at", "description", "image", "name", "store_id", "sub_items", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)
(0.2ms) rollback transaction
*** ActiveRecord::StatementInvalid Exception: TypeError: can't cast ActionDispatch::Http::UploadedFile to string: INSERT INTO "items" ("created_at", "description", "image", "name", "store_id", "sub_items", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)
我的观点:
<%= form_for @items, :url => dashboard_create_items_path(@store.id), :html => {:multipart => true} do |f| %>
<%= f.label :name, 'Name' %>
<%= f.text_field :name %><br />
<%= f.label :title, 'Title' %>
<%= f.text_field :title %><br />
<%= f.label :image, 'Image' %>
<%= f.file_field :image %><br />
<%= f.label :description, 'Description' %>
<%= f.text_field :description %><br />
<%= f.label :sub_items %><br>
<%= f.select :sub_items, options_for_select([["true", true], ["false", false]]), :selected => 'true' %><br />
<%= f.submit %>
<% end %>
我的控制员:
def create_items
store = Store.find(params[:id])
@items = store.items.create(item_params)
if @items
redirect_to dashboard_show_items_url(@items.id, store.id)
else
redirect_to dashboard_new_items_url
end
end
private
def item_params
params.require(:item).permit(:name, :title, :image, :description, :sub_items, :store_id)
end
当我错的时候,请告诉我? 之前谢谢
答案 0 :(得分:11)
您可能会看到此错误消息,因为Carrierwave尚未在您的模型中初始化。
需要将载波方法mount_uploader
添加到模型中的图像字段,如下所示:
class Item < ActiveRecord::Base
mount_uploader :image, ImageUploader
end
(有关详细信息,请参阅docs)