返回介绍

WWW.WWW 构造WWW

发布于 2019-12-18 15:38:47 字数 6884 浏览 980 评论 0 收藏 0

JavaScript => WWW(url: string)
C# => WWW(string url);

Parameters 参数

urlThe url to download. Must be '%' escaped.
要下载的地址。必须是%编码。

Returns 返回

void A new WWW object. When it has been downloaded, the results can be fetched from the returned object.

返回WWW类型,一个新的WWW对象。当它被下载,其结果可以从返回的对象中获取。

Description 描述

Creates a WWW request with the given URL.

用给定的URL创建一个WWW请求。

This function creates and sends a GET request. The stream will automatically start downloading the response.

这个函数创建和发送一个GET请求,流将自动开始下载响应。

After the stream is created you have to wait for it to complete, then you can access the downloaded data. As a convenience the stream can be yielded, so you can very easily tell Unity to wait for the download to complete.

流创建之后,你必须等待它完成,然而可以访问已下载的数据。作为一个方面的流可以被中断,因此你可以容易的告诉Unity等待下载完成。

Note: URL must be '%' escaped.

注意,URL必须是%编码的。

JavaScript:

// Get the latest webcam shot from outside "Friday's" in Times Square
// 获取纽约时报最新的外部"Friday" 网络摄像头数据 
var url = "http://images.earthcam.com/ec_metros/ourcams/fridays.jpg";
function Start () {
	// Start a download of the given URL
	// 开始下载给定的URL
	var www : WWW = new WWW (url);
 
	// Wait for download to complete
	// 等待直到下载完成
	yield www;
 
	// assign texture
	//指定纹理
	renderer.material.mainTexture = www.texture;
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public string url = "http://images.earthcam.com/ec_metros/ourcams/fridays.jpg";
    IEnumerator Start() {
        WWW www = new WWW(url);
        yield return www;
        renderer.material.mainTexture = www.texture;
    }
}

JavaScript => WWW(url: string, form: WWWForm)
C# => WWW(string url, WWWForm form);

Parameters 参数

urlThe url to download. Must be '%' escaped.
要下载的地址。必须是%编码。
formA WWWForm instance containing the form data to post.
一个WWWForm实例,包含post表单数据。

Returns 返回

void A new WWW object. When it has been downloaded, the results can be fetched from the returned object.

返回WWW类型,一个新的WWW对象。当它被下载,其结果可以从返回的对象中获取。

Description 描述

Creates a WWW request with the given URL.

用给定的URL创建一个WWW请求。

This function creates and sends a POST request with form data contained in a WWWForm parameter. This is the same as calling new WWW(url,form.data, form.headers). The stream will automatically start downloading the response.

这个函数创建和发送一个POST关于表单数据包含一个WWWForm参数的请求。这是与调用new WWW(url,form.data, form.headers)相同的。流将自动开始下载响应。

After the stream is created you have to wait for it to complete, then you can access the downloaded data. As a convenience the stream can be yielded, so you can very easily tell Unity to wait for the download to complete.

流创建之后,你必须等待它完成,然而可以访问已下载的数据。作为一个方面的流可以被中断,因此你可以容易的告诉Unity等待下载完成。

Note: URL must be '%' escaped.

注意,URL必须是%编码的。


JavaScript => WWW(url: string, postData: byte[])
C# => WWW(string url, byte[] postData);

Parameters 参数

urlThe url to download. Must be '%' escaped.
要下载的地址。必须是%编码。
postDataA byte array of data to be posted to the url.
一个被发送到URL,数据的字节数组。

Returns 返回

void A new WWW object. When it has been downloaded, the results can be fetched from the returned object.

返回WWW类型,一个新的WWW对象。当它被下载,其结果可以从返回的对象中获取。

Description 描述

Creates a WWW request with the given URL.

用给定的URL创建一个WWW请求。

This function creates and sends a POST request with raw post data contained in postData. The stream will automatically start downloading the response. Use this version if you need to post raw post data in a custom format to the server.

这个函数创建和发送一个POST关于元素post数据包含在postData的请求。流将自动开始下载响应。如果你需要post在一个自定义格式的原始postData到服务器,使用这个版本。

After the stream is created you have to wait for it to complete, then you can access the downloaded data. As a convenience the stream can be yielded, so you can very easily tell Unity to wait for the download to complete.

流创建之后,你必须等待它完成,然而可以访问已下载的数据。作为一个方面的流可以被中断,因此你可以容易的告诉Unity等待下载完成。

Note: URL must be '%' escaped.

注意,URL必须是%编码的。


JavaScript => WWW (url : string, postData : byte[], headers : Hashtable)
C# => WWW (string url, byte[] postData, Hashtable headers)

Parameters 参数

urlThe url to download. Must be '%' escaped.
要下载的地址。必须是%编码。
postDataA byte array of data to be posted to the url.
一个被发送到URL,数据的字节数组。
headersA hash table of custom headers to send with the request.
自定义哈希表头来发送请求。

Returns 返回

void A new WWW object. When it has been downloaded, the results can be fetched from the returned object.

返回一个新的WWW对象。当它被下载,其结果可以从返回的对象中获取。

Description 描述

Creates a WWW request with the given URL.

用给定的URL创建一个WWW请求。

This function creates and sends a POST request with raw post data contained in postData and custom request headers supplied in the headers hashtable. The stream will automatically start downloading the response. Use this version if you need to post raw post data in a custom format to the server or if you need to supply custom request headers.

这个函数创建和发送一个POST关于原始post数据包含在postData并且在哈希表头自定义请求headers的请求。流将自动开始下载响应。如果你需要post在一个自定义格式的原始postData到服务器或如果您需要提供自定义请求表头,使用这个版本。

After the stream is created you have to wait for it to complete, then you can access the downloaded data. As a convenience the stream can be yielded, so you can very easily tell Unity to wait for the download to complete.

流创建之后,你必须等待它完成,然而可以访问已下载的数据。作为一个方面的流可以被中断,因此你可以容易的告诉Unity等待下载完成。

Note: URL must be '%' escaped.

注意,URL必须是%编码的。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文