美文网首页
Unity与Web服务器数据请求www

Unity与Web服务器数据请求www

作者: 壹米玖坤 | 来源:发表于2018-07-26 23:06 被阅读0次

    unity中使用www方式与web服务器进行数据请求,添加代码,将其挂载在main camera

    using UnityEngine;

    using System.Collections;

    using UnityEngine.UI;

    public class GetObj : MonoBehaviour

    {

    public InputField nameInput;

    public InputField addressInput;

    public void OnBtnLogin()

    {

    string name = null;

    name = nameInput.text;

    string address = null;

    address = addressInput.text;

    StartCoroutine(Request(name,address));

    }

    IEnumerator Request(string name,string address)

    {

    string url = "www.text.com/Handler1.ashx?name=" + name + "&address" + address;

    WWW www = new WWW(url);

    yield return www;

    while (!www.isDone)

    {

    yield return new WaitForEndOfFrame();

    }

    if (www.error==null)

    {

    //打印出get请求回应内容

    Debug.Log(www.text);

    }

    }

    }

    在unity中简单建如下图UI:

    当点击按钮后,将打印出结果

    转载于感谢原作者:https://blog.csdn.net/qq_33747722/article/details/54295863

    相关文章

      网友评论

          本文标题:Unity与Web服务器数据请求www

          本文链接:https://www.haomeiwen.com/subject/inbimftx.html