我正在将POST
请求传递给包含转义的unicode字符的字符串的URL。检查被叫服务器上的日志时,unicode字符未转义。
我的代码:
SomeClass.post("path/to/method", :body => "<tag>This is a unicode character: 龅</tag>")
登录path/to/method
:
Parameters: {"tag"=>"This is a unicode character: 龅"}
如何告诉HTTParty不要转义转义的字符?
更新
似乎龅
正在与&
分开,即使它将其作为POST
和普通字符串发送。我不能让&符号逃脱,它需要像现在一样被转义。