Asp.Net Core WebApi集合参数

时间:2019-04-16 00:01:07

标签: json asp.net-core-webapi endpoint

我有以下WebAPI方法:

    [Route("Api/FuelTransaction/Efs")]
    [HttpPost]
    public virtual IActionResult Efs(IEnumerable<TransactionDto> fuelTransactions)
    {

其中TransactionDto为:

public class TransactionDto
{
    //N/A to the customer.
    public int ARBatchNumber { get; set; }

我尝试通过邮递员调用此方法:

enter image description here

但是我收到的收藏是空的。怎么了?

1 个答案:

答案 0 :(得分:0)

只需为参数添加[FromBody]属性(感谢Nkosi的帮助):

public virtual IActionResult Efs([FromBody]IEnumerable<TransactionDto> fuelTransactions)
{