当前位置:Gxlcms > mysql > xe2升级到xe6后DataSnapRestPOST调用参数中出现中文乱码

xe2升级到xe6后DataSnapRestPOST调用参数中出现中文乱码

时间:2021-07-01 10:21:17 帮助过:15人阅读

修改 indy控件 IdCustomHTTPServer.pas procedure TIdHTTPRequestInfo.DecodeAndSetParams(const AValue: String); 方法中 新增一行 if CharSet='' then CharSet:='UTF-8'; LEncoding := CharsetToEncoding(CharSet); 或修改 indy控件 IdHTTPHeaderInfo.pas

修改 indy控件 IdCustomHTTPServer.pas

procedure TIdHTTPRequestInfo.DecodeAndSetParams(const AValue: String);

方法中 新增一行

if CharSet='' then CharSet:='UTF-8';
LEncoding := CharsetToEncoding(CharSet);

或修改 indy控件 IdHTTPHeaderInfo.pas 文件

替换里面FCharSet=‘’ 为 FCharSet=‘UTF-8’

人气教程排行