In my controller, the following works (prints "oké")
puts obj.inspect
But this doesn't (renders "ok\u00e9")
render :json => obj
Apparently the to_json method escapes unicode characters. Is there an option to prevent this?
|
In my controller, the following works (prints "oké")
But this doesn't (renders "ok\u00e9")
Apparently the |
|||||||
|
|
If you dig through the source you'll eventually come to
The various I'd agree that forcing JSON to be 7bit-clean is a bit bogus but there you go. Short answer: no. |
|||
|
|
|
To set the \uXXXX codes back to utf-8:
|
|||
|
|
|
You can prevent it by monkey patching the method mentioned by muu is too short. Put the following into config/initializers/patches.rb (or similar file used for patching stuff) and restart your rails process for the change to take affect.
Be adviced that there's no guarantee that the patch will work with future versions of ActiveSupport. The version used when writing this post is 3.1.3. |
|||||||
|
|
That is the correct encoding. JSON doesn't requre Unicode characters to be escaped, but it is common for JSON libraries to produce output which contains only 7-bit ASCII characters, to avoid any potential encoding problems in transit. Any JSON interpreter will be able to consume that string and reproduce the original. To see this in action, just type |
|||
|
|
|
I have got a very tricky way to solve this problem. Well, if
|
||||
|
|
|
Characters were not escaped to unicode with this method in
|
|||
|
|