得到
Get 从 Web 服务器获取数据。和 new WWW("https://urlexample.com");
有一个网址,但没有第二个参数正在做一个 Get 。
即
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
public string url = "http://google.com";
IEnumerator Start()
{
WWW www = new WWW(url); // One get.
yield return www;
Debug.Log(www.text); // The data of the url.
}
}