我在app/pdfs/templates/work文件夾中有一些pdf模板,並且在其中的每個代碼中都有一些代碼在重複,我想用此代碼添加一個局部和渲染它在模板中。如何在Rails中渲染自定義模板中的部分
<td class="money last footer-subtotal">
<p><strong><%= sub_total %></strong></p>
<p><strong><%= total_tax %></strong></p>
<p class="footer-total"><strong><%= final_price %></strong></p>
</td>
在模板中我使用:
我在app/PDF文件/模板/ _calculation.html.erb添加parrtial
<%= render "templates/calculation" %>
當我點擊PDF,我得到以下錯誤:
未定義的方法`呈現」爲#
我沒有用之前的PDF文件的工作 - 你是如何將它們輸出到視圖? –
或者如何在助手方法中寫上述代碼 – venkat