web api方法没有接收参数

时间:2018-01-23 02:43:36

标签: c# asp.net-core-webapi

我有一个.net核心API,当通过postman参数值提交时,不会收到值。我究竟做错了什么?

邮差示例

enter image description here

这是我的代码:

[HttpGet("/{clientId}/{emailType}", Name = "GetEmailConfigurations")]
public async Task<EmailConfigurationsModel> GetEmailConfigurations(Guid clientId, int emailType)
{
    return await _emailService.GetEmailConfigurations(clientId, emailType);
}

1 个答案:

答案 0 :(得分:1)

我没有在标题中提供内容类型。一旦我添加了content-type = application / json,一切都开始正常工作。