Browse Source

修复get请求,参数获取问题

lcl 3 months ago
parent
commit
6f4db220b7
2 changed files with 1 additions and 0 deletions
  1. BIN
      .DS_Store
  2. 1 0
      Filters/AuthorizationFilter.cs

BIN
.DS_Store


+ 1 - 0
Filters/AuthorizationFilter.cs

@@ -136,6 +136,7 @@ namespace Filters
 
         public string GetParam(string content, string key)
         {
+            if(content.StartsWith("?")) content = content.Substring(1);
             string[] data = content.Split('&');
             foreach(string sub in data)
             {