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 控制器
基础教程推荐
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01