版本: 2022.3
语言: 英语
高级操作:使用LLAPI
创建UploadHandlers

创建UnityWebRequests

WebRequests可以像其他任何对象一样实例化。有可用的两种构造函数

  • 标准的无参数构造函数创建了一个带有所有设置空白或默认值的新的UnityWebRequest。目标URL未设置,未设置自定义头,重定向限制设置为32。
  • 第二个构造函数接受一个字符串参数。它将UnityWebRequest的目标URL设置为字符串参数的值,其他方面与无参数构造函数相同。

还有其他多个属性可用于设置、跟踪状态和检查UnityWebRequest的结果或结果。

示例

UnityWebRequest wr = new UnityWebRequest(); // Completely blank
UnityWebRequest wr2 = new UnityWebRequest("https://www.mysite.com"); // Target URL is set

// the following two are required to web requests to work
wr.url = "https://www.mysite.com";
wr.method = UnityWebRequest.kHttpVerbGET;   // can be set to any custom method, common constants privided

wr.useHttpContinue = false;
wr.chunkedTransfer = false;
wr.redirectLimit = 0;  // disable redirects
wr.timeout = 60;       // don't make this small, web requests do take some time
高级操作:使用LLAPI
创建UploadHandlers