TypeError(无法将nil转换为Integer)回形针

时间:2011-09-29 10:17:50

标签: ruby-on-rails-3 paperclip

我正在使用paperclip创建新对象以保存在我面临的数据库中 can't convert nil into Integer paperclip错误

这就是我在我的功能中写的。

def create
  @asset = Asset.new(params[:snap]) #here i am facing the above error.
  @asset.user_id = current_user.id
  @asset.save
  redirect_to "/"
end

这是我在发布表单时获得的内容

{:original=>#<File:/tmp/stream20110929-1212-17asdf-0,6708,0>,  .... }

有任何解决此问题的建议吗?

1 个答案:

答案 0 :(得分:1)