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 控制器


基础教程推荐
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01