版本: Unity 6 (6000.0)
语言英语
  • C#

WWWForm.headers

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每个建议更改,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public Dictionary<string,string> headers;

描述

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

}