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

WWWForm.data

建议更改

成功!

感谢您帮助我们提升 Unity 文档的质量。虽然我们无法接受所有投稿,但我们会阅读用户建议的每处更改,并在适用的地方进行更新。

关闭

投稿失败

由于某种原因,您建议的更改无法提交。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们提升 Unity 文档的质量。

关闭

取消

public byte[] data;

描述

(只读)发送表单时作为 POST 请求主体传递的原始数据。

通常,你只需直接将 WWWForm 对象传递给 WWW 构造函数,但如果你希望更改发送给 Web 服务器的请求标头,则需要此变量。

其他资源:headers 变量。

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

public class ExampleClass : MonoBehaviour { IEnumerator Start() { WWWForm form = new WWWForm(); form.AddField( "name", "value" ); Dictionary<string, string> headers = form.headers; byte[] rawData = form.data; string url = "www.myurl.com";

// Add a custom header to the request. // In this case a basic authentication to access a password protected resource. headers["Authorization"] = "Basic " + System.Convert.ToBase64String( System.Text.Encoding.ASCII.GetBytes("username:password"));

// Post a request to an URL with our custom headers using (WWW www = new WWW(url, rawData, headers)) { yield return www; //.. process results from WWW request here... } } }