Posting a List of GUIDs to a MVC 5 Controller with Postman(使用 Postman 将 GUID 列表发布到 MVC 5 控制器)
问题描述
我正在尝试制作一个控制器方法:
public String CreateGasolineBlend(List<Guid> enumerableTransferIDs){//细节}
接受 GUID 列表.但是,当我使用邮递员时,列表始终为空.
我尝试使用这篇文章来了解如何格式化请求:
I'm attempting to make a controller method:
public String CreateGasolineBlend(List<Guid> enumerableTransferIDs)
{
//Details
}
Accept a list of GUIDs. However, the list is always null when I'm using postman.
I tried using this article to find out how to format the request:
Is it possible to send an array with the Postman Chrome extension?
But I'm unsure if MVC even is capable of accepting a List of objects using a Post Method, or if perhaps I am incorrectly formatting the POST request in Postman.
(I am using what the previous stack overflow question states, arr[0], arr[1] or arr[], arr[] with Guids as values.)
Is my problem with the way I'm receiving the values in the controller, or is it a problem with how I'm using Postman?
MVC is capable of accepting a list objects and map it to the action method parameter.
You need to make sure you are using the correct Content-Type
header value when send the data. "application/json"
should work.
I just updated your action method to return the posted data along with the item count in a json structure to verify this.
[HttpPost]
public ActionResult CreateGasolineBlend(List<Guid> enumerableTransferIDs)
{
return Json(new { ItemCount= enumerableTransferIDs.Count(),
Items= enumerableTransferIDs});
}
You can see the response came back with the data we posted.
这篇关于使用 Postman 将 GUID 列表发布到 MVC 5 控制器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Postman 将 GUID 列表发布到 MVC 5 控制器


- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01