伙计,现在我想用rails 4上传文件我的问题现在我在上传之前无法检查文件扩展名
注意: 我可以很好地上传文件, 但我想在上传之前获取文件类型
因为我需要在我的应用程序的另一个步骤中进行扩展。
我尝试使用命令
File.extname(params[:Upload])
但总是出错
can't convert ActionDispatch::Http::UploadedFile into String
还有我如何在上传之前获取文件基名??当我尝试使用
File.basename(params[:Upload])
我有同样的错误
can't convert ActionDispatch::Http::UploadedFile into String
同样,当我尝试将名称转换为 Sting 时,我什么也没有得到