//发送请求
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);
}本文共 216 字,大约阅读时间需要 1 分钟。
//发送请求
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);
}转载于:https://www.cnblogs.com/jiahuafu/p/6625775.html