Rumah > Artikel > pangkalan data > xe2升级到xe6后 DataSnap Rest POST调用 参数中出现中文乱码
修改 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’