Unity--get请求与解析

Posted 格拉格拉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity--get请求与解析相关的知识,希望对你有一定的参考价值。

    private static string _Url = "https://xxxx.cn-beijing.fc.aliyuncs.com/proxy/zjds/api";
    private static string _BuDan = "/order/surplus";

 

public IEnumerator BuDan()
    {
        //Debug.LogError("补单检测");
        UnityWebRequest request = UnityWebRequest.Get(_Url + _BuDan +"?g="+_gid + "&u=" + _uid); 
        request.timeout = 5;
        yield return request.SendWebRequest();

        if (request.responseCode == 200)
        {
            string text = request.downloadHandler.text;
            //Debug.LogError("服务器返回:" + text);
            JsonData jData = JsonMapper.ToObject(text);
            int code = int.Parse(jData["s"].ToString());
            if (code == 0)
            {
                int num = jDat

以上是关于Unity--get请求与解析的主要内容,如果未能解决你的问题,请参考以下文章

Java面试题:POST请求与GET请求的区别在哪?

接口测试之GET与POST请求

python应用之爬虫实战2 请求库与解析库

解析HTTP协议六种请求方法,get,head,put,delete,post有啥区别

解析ajax请求post和get的区别

复习知识点:XML解析数据,JOSN解析数据,GET请求数据,POST请求数据