//发送请求
WWW w = new WWW(url);
//web服务器返回
yield return w;
if (!string.IsNullOrEmpty(w.error))
{
Debug.Log(w.error);
}
else
{
string w_text = Regex.Unescape(w.text);
}
2023-08-30 09:08:04
//发送请求
WWW w = new WWW(url);
//web服务器返回
yield return w;
if (!string.IsNullOrEmpty(w.error))
{
Debug.Log(w.error);
}
else
{
string w_text = Regex.Unescape(w.text);
}