Version: 2020.2
Method group is Obsolete

WWW.responseHeaders

切换到手册
Obsolete public Dictionary<string,string> responseHeaders ;

描述

请求返回的标头的字典。

using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class ExampleClass : MonoBehaviour { public string url = "http://unity3d.com"; IEnumerator Start() { using (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"。不这样做可能会抛出安全异常。