我正在使用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>, .... }
有任何解决此问题的建议吗?
答案 0 :(得分:1)