修改 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’