2014-04-22 3 views
3

내가이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

당신의 이니셜 \ wicked_pdf 설정 파일에 'utf8'` :
<%=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

또한 동일한 설정'인코딩을 넣을 수 있습니다 – BlackTea