次のような部分的なレンダリングでファイルリンクを配置しようとしています:
#Main haml file
= render :partial => 'file_upload', :locals => {:f => f, :file_download => 'residence_cert'}
#Inside the partial
%a{:href => @postulant_info[file_download]}
しかし、これはファイルへのフルパスではなく、ファイル名だけでリンクを作成しています。次に@postulant_info[file_download]
、搬送波オブジェクトではなく、ファイル名を含む文字列を提供しているだけであることに気付きました
-logger.debug @postulant_info.residence_cert #this is returning my carrierwave object -> 'DocumentUploader'
-logger.debug @postulant_info['residence_cert'] #but this one is just returning a String, the DB record with the file name
1 つの解決策は、URL をローカルのようにレンダーに配置する= render :partial => 'file_upload', :locals => {:f => f, :file_download => 'residence_cert', :url => @postulant_info.residence_cert.url}
ことですが、部分テンプレート内に属性名がある場合は「必要」は不要だと思います。
どんな考えでもいただければ幸いです。前もって感謝します