Version: 2022.1
public Dictionary<string,string> headers ;

描述

(Read Only) 返回正确的请求标头,以使用 WWW 类发布表单。

此字段只包含一个标头“Content-Type”, 它设置为表单的正确 MIME 类型:“application/x-www-form-urlencoded”(对于普通 表单)和“multipart/form-data”(对于包含使用 AddBinaryData 添加的数据的表单)。

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

public class Example : MonoBehaviour {

IEnumerator Start () { Dictionary<string, string> headers = new Dictionary<string,string>(); headers.Add("header-name", "header content"); WWW www = new WWW("https://example.com", null, headers); yield return www; Debug.Log (www.text); }

}