using System.Collections; using System.Collections.Generic; using UnityEngine; public enum RequestsMethods // 事件方法 { GET = 1, // 获取 PUT = 3, // 修改 POST = 0, // 默认发送, 不需要任何返回 DELETE = 2, // 删除 }