Encoding::CompatibilityError in rails

2019-06-10 00:07发布

问题:

<%= link_to '注销', :controller => :user, :action => :logout %>

this raises Encoding::Compatibility exception, and when i try

<%= link_to '注销'.force_encoding('utf-8'), :controller => :user, :action => :logout %>

this didn't help, either. but this works

<a href="<%= url_for :controller => :user, :action => :logout>">注销</a>

why ??? i just can't figure out WHY this happends and HOW to fix it. any ideas?? thanks!!! ruby version 1.9, rails 2.3.5

回答1:

I got similar errors before and it turned out that the file itself that contains the code is not using UTF8 encoding :(, so you'd better check the editor you are using as it might not be using UTF8 encoded files.