我正在使用部分表单来创建和编辑包含上传器(“文件”)的模型对象:
= simple_form_for(@document) do |f|
= f.error_notification
.form-inputs
= f.input :event_id
= f.input :name
= f.input :file
= f.hidden_field :file_cache
.form-actions
= f.button :submit
在编辑表单中,而不是获取与已上传文件关联的文件名,我得到“未选择文件”。有没有办法让小部件识别上传者不是零并使用上传者的文件名?