如何使用 JSON 对象通过邮递员发布到 MVC 端点

How to post to MVC endpoint via postman with JSON object(如何使用 JSON 对象通过邮递员发布到 MVC 端点)
本文介绍了如何使用 JSON 对象通过邮递员发布到 MVC 端点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 JSON 对象并试图向我的 API 端点发送一个 post 请求.

I have a JSON object and trying to have a post request to my API endpoint.

在我的列表控制器中,我有以下功能

In my Listing controller I have the following function

[HttpPost]
public async Task<IActionResult> Import(GetImportInput input)
{

    return StatusCode(200);
}

GetImportInput.cs

GetImportInput.cs

public string Name {get; set;}


邮递员详情:


Postman details:

ContentType = application/json

Body = {
            "name" : "Rabbit"
       }

当我在 Import 方法中放置断点时,断点命中,但参数输入没有值 Rabbit.请问如何正确让邮递员发送正文,以便我的控制器方法将其接收.

When I put a breakpoint inside my Import method, the breakpoint hits, but the parameter input does not have the value Rabbit. May I ask how do I properly get my postman to send the body so my controller method will pick it up.

标题标签

推荐答案

您的控制器方法中缺少 [FromBody],这里大小写不是问题.请记住在使用 Postman 进行测试时使用标头 Content-Type: application/json.

You are missing [FromBody] in your controller method, casing is not an issue here. Remember to use header Content-Type: application/json when testing this with Postman.

public class ListingController : ControllerBase
{
    [HttpPost]
    public IActionResult Import([FromBody]GetImportInput input)
    {
        return StatusCode(200);
    }
}

这篇关于如何使用 JSON 对象通过邮递员发布到 MVC 端点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)