修复FullUrl()未url转义导致的bug

This commit is contained in:
ziyue
2021-08-26 19:10:04 +08:00
parent 626bf3dcf9
commit 03e9c09c42
4 changed files with 12 additions and 18 deletions

View File

@@ -69,7 +69,7 @@ public:
//获取中间url不包含?后面的参数
const string &Url() const;
//获取中间url包含?后面的参数
const string &FullUrl() const;
string FullUrl() const;
//获取命令协议名
const string &Tail() const;
//根据header key名获取请求header value值
@@ -96,7 +96,6 @@ private:
string _strTail;
string _strContent;
string _strNull;
string _strFullUrl;
string _params;
mutable StrCaseMap _mapHeaders;
mutable StrCaseMap _mapUrlArgs;