UnityWebRequest如何发送Json数据格式的Post请求,为什么使用UnityWebRequest.Post会报错?_unity post json_YY-nb的博客-CSDN博客本篇介绍的法一在网上能够搜到很多类似的介绍。但是我就纳闷了,为什么不能直接用 UnityWebRequest.Post 呢&…
1. 关键代码
1.1 协程实现
using System;
using System.Collections;
using UnityEngine;
using UnityEngine.Networking;
using System.Collections.Generic;
using System.Linq;
using System.Text;public class WebRequest : MonoBehaviour
{/// <summary>/// GET请…