.net core web api 与httpclient发送和接收文件及数据

客户端 HttpClient

         var url = $"https://localhost:44323/api/values/posttest?resource_source=yangwwmessage";
                using (HttpClient _client = new HttpClient())
                {
                    using (var multiContent = new MultipartFormDataContent())
                    {
                        var fileContent = new ByteArrayContent(System.IO.File.ReadAllBytes(imgPath));
                        multiContent.Add(fileContent, "file", Path.GetFileName(imgPath));

                        HttpResponseMessage response = _client.PostAsync(url, multiContent).Result;
                        string data = response.Content.ReadAsStringAsync().Result;
                    }
                }

服务端.net core Web Api 

        [HttpPost]
        [Route("PostTest")]
        public JsonResult PostTest()
        {
            var r = Request.Query["resource_source"].ToString();
            var files = HttpContext.Request.Form.Files;
            return new JsonResult("this is a test api for me") { StatusCode = 200 };
        }

猜你喜欢

转载自www.cnblogs.com/dayang12525/p/10688842.html
今日推荐