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
| |||||
feedback
|
|
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. | |||
|
feedback
|
|
To set the \uXXXX codes back to utf-8:
| |||
|
feedback
|
|
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 | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
I have got a very tricky way to solve this problem. Well, if to_json did not allow you to have the correct code, then you could try directly write: render text: tags render json: tags or render json: tags.to_json will always auto transfer the encoding style, but if you use render text:tags, then the string will stay as it is. And I think jquery could still recognize the data. | |||
|
feedback
|