-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Text in Japanese garbled #18
Comments
After I directly changed the line in Form.REST.Abstract.cls Parameter CHARSET = "utf-8"; I can show Japanese properly. However this solution seems a little uncool to me. |
I remember at some point Form.REST.Abstract had @wolfman0719 you can also create a pull request including your changes and maybe some UnitTests containing Japanese characters. I'll try to have a look at this project again as soon as I can. |
How does your HTTP request looks like? Do you send UTF8 header? Generally, broker can work without UT8 param, if requests sent to broke include:
|
Yes, the Header has content-type application/json charset=utf-8 |
And still garbled text? In object or SQL mode? Both? |
This is a great tool.
So I would like to use it, however it looks like not suppporting Japanese.
All Japanese are shown ???.
This is the typical symptom of not being trasnlated properly from unicode to other encoding
Looking at the content-type of the output , I've found that the content-type is application/json; charset=RAW.
I assume if I can set it to charset=UTF-8 instead of RAW, the issue will probably be resolved.
Is there a way to set it up to UTF-8?
The text was updated successfully, but these errors were encountered: