如何在Unity调试日志中显示URL内容

时间:2018-01-12 14:48:16

标签: c# unity3d

我已经使这个函数在DebugLOG中显示URL内容。这里有什么错吗?或者我可能有一个不好的方法?

 IEnumerator Web()
    {
        using (WWW www = new WWW(servicesURL))
        {
            yield return www;
            Debug.Log(www.text);

        }

    }

对于任何网站,它都会返回:

<noscript>This site requires JavaScript and Cookies to be enabled. Please change your browser settings or upgrade your browser.</noscript>

0 个答案:

没有答案