将项目从 2.2 更新到 3.1(缺少程序集)或如何在 .NET Core 中使用 API POST 请求时,PostAsJsonAsync()在 .Net Core 3.1 中不起作用 [重复]
Posted
技术标签:
【中文标题】将项目从 2.2 更新到 3.1(缺少程序集)或如何在 .NET Core 中使用 API POST 请求时,PostAsJsonAsync()在 .Net Core 3.1 中不起作用 [重复]【英文标题】:PostAsJsonAsync() not working in .Net Core 3.1 when update project from 2.2 to 3.1 (Missing Assembly) or How to consume API POST request in .NET Core [duplicate] 【发布时间】:2020-01-19 13:09:05 【问题描述】:我已将我的 Dot Net Core 项目从 2.2 更新到 3.1。 这是一个 MVC 项目,我已经从我的 MVC 项目中调用了我的 .net 核心 API,并且我所有的 post 方法调用都给出了错误。
这是错误:
'HttpClient' does not contain a definition for 'PostAsJsonAsync'
and no accessible extension method 'PostAsJsonAsync' accepting a first argument of type 'HttpClient'
could be found (are you missing a using directive or an assembly reference?
这里是示例代码:
HttpResponseMessage resNews = await client.PostAsJsonAsync("News/GetNews", News);
if (resNews.IsSuccessStatusCode)
UiLogger.LogInfo("News api called");
var result = resNews.Content.ReadAsStringAsync().Result;
newsItem = JsonConvert.DeserializeObject<News>(result);
有什么解决方案或替代方案吗? 谢谢。
【问题讨论】:
【参考方案1】:这对我有用。
Dot net core 3.x 没有 PostAsJsonAsync() 的任何程序集。
Microsoft 不支持 Dot Net Core 2。所以我们不应该使用 3.x 中没有的任何东西。不应从 2.x 添加程序集。
可能的替代方法是 PostAsync();
HttpResponseMessage resNews =
await client.PostAsync("News/GetNews", new StringContent(JsonConvert.SerializeObject(Object),
Encoding.UTF8, "application/json"));
If pass only string:
HttpResponseMessage resNews =
await client.PostAsync("News/GetNews", new StringContent("string"));
【讨论】:
以上是关于将项目从 2.2 更新到 3.1(缺少程序集)或如何在 .NET Core 中使用 API POST 请求时,PostAsJsonAsync()在 .Net Core 3.1 中不起作用 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
从 .net core 2.2 移动到 3.1 后无法上传文件
从 2.2 迁移到 3.1 的 ASP.Net Core 解决方案在发布时不会运行
迁移到 .NET Core 3.1 - 缺少 Newtonsoft