(只读)返回使用 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); }
}