string detailURL = "https://www.xxx.xxx.";

        using (var w = new WWW(detailURL))
        {

            yield return w;

            if (!string.IsNullOrEmpty(w.error))
            {
                Debug.LogError("URL:" + detailURL + " ERROR:" + w.error);
                
                yield break;
            }

        



            string w_text = Regex.Unescape(w.text);

            DetailResult wwwResult = JsonUtility.FromJson<DetailResult>(w_text);

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-09
  • 2022-12-23
  • 2021-11-21
  • 2021-07-22
  • 2021-09-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
  • 2022-12-23
  • 2021-08-25
  • 2021-04-21
相关资源
相似解决方案