新手问题 paperclip gem 汉字显示问题

xiaoxiao · 2013年05月22日 · 最后由 xiaoxiao 回复于 2013年05月23日 · 2037 次阅读

我用 paperclip 这个 gem 来上传文件。如果文件的名字为英文的话能正常显示,如果为汉字的显示乱码怎么解决

不知道你怎么弄出来的


不过上面那些是 URL Escape 过后的内容:

irb> require "cgi"
irb> CGI.unescape("%e7%bb%98%e5%9b%be3")
=> "绘图3"

高手呀,解决了。因为我在显示的时候直接用<% @users.each do |user| %>

  • <%= image_tag user.avatar.url%> <%= link_to 'Show', :controller => 'users', :action => 'show', :id => user %> <%= link_to 'Edit', :controller => 'users', :action => 'edit', :id => user %> <%= link_to 'Delete', :controller => 'users', :action => 'destroy', :id => user %> <%= link_to "Download", :controller=>'users', :action=>'avatars', :id=>user %>
  • <% end %>所以汉字显示乱码,thx
    需要 登录 后方可回复, 如果你还没有账号请 注册新账号