我想根据条件(if..else)获取附件模型的属性名称(pdf_file.file_name)。但我对 Arbe Syntex 不熟悉,无法在视图中显示输出。
我正在渲染我active_admin
班级的部分文件。
我_test.arb
文件中的代码
f.has_many :course_pdf_attachments, allow_destroy: true do |attachment|
if attachment.object.pdf_file.present?
'Uploaded PDF:'
link_to attachment.object.pdf_file.filename.upcase,
attachment.object.pdf_file_url
end
attachment.input :pdf_file, as: :file
end
我在视图中得到的输出只是input_filed
不是我试图在条件中显示的值。
如何编写此代码以使我的值在视图中可见?
提前致谢