2014-04-22 33 views
3

在我生成的PDF我得到這個Wicked_pdf和UTF8符號

0,00 € 

,而不是

0,00 € 

Application.html.erb

<meta charset="utf-8"> 
    <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 

show.html.erb

<%=number_to_currency item.total%> 

回答

6
respond_to do |format| 
     format.html { render :template => "invoices/show"} 
     format.pdf {render :pdf => "invoices/show", 
       :template => 'invoices/show', formats: :html, encoding: 'utf8'} 
    end 
+2

你也可以把同樣的設置'編碼:「utf8''到您的初始化\ wicked_pdf配置文件 – BlackTea