s删掉没用的

This commit is contained in:
陈向学 2024-07-19 14:08:50 +08:00
parent e47c35dfcc
commit 70308e889e
2 changed files with 1 additions and 13 deletions

View File

@ -70,18 +70,6 @@ public static class RequestBase
Debug.Log("method 0");
using (UnityWebRequest webRequest = new UnityWebRequest())
{
if (_quary_datas != null)
{
_url = _url + "?";
foreach (var item in _quary_datas)
{
_url = string.Format("{0}{1}={2}&", _url, item.Key, item.Value);
}
}
_url = _url.TrimEnd('&');
UnityEngine.Debug.Log(_url);
webRequest.url = _url;
webRequest.method = "GET";