请求返回的标头的字典。
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class test : MonoBehaviour
{
public string url = "http://unity3d.com";
IEnumerator Start()
{
WWW www = new WWW(url);
yield return www;
if (www.responseHeaders.Count > 0)
{
foreach (KeyValuePair<string, string> entry in www.responseHeaders)
{
Debug.Log(entry.Value + "=" + entry.Key);
}
}
}
}
注意,在使用以下代码示例时,您需要在 Editor Settings 中将“WWW Security Emulation Host URL”设置为 "http://unity3d.com"。不这样做可能会抛出安全异常。