A list of GUIDs is empty when passed into a model which is used by [FromForm] in ASP.NET Core 2.2
编辑:
问题在于招摇。查看我自己的修复的答案。
我目前在使用 HTTP POST 和
向导列表为空。如果我尝试将其转换为字符串列表,而不是具有 3 个值,则列表中仅显示 1 个值,它是包含 3 个值但以逗号分隔的字符串。
我使用 [FromForm] 的原因是因为我需要上传文件,但还要将一些其他数据传递给操作。
我创建了一个示例项目,当您使用 Kestrel 调试应用程序时它会使用 swagger。
这是项目:https://github.com/sander1095/FromFormGuidListBug
对于不想看到项目的人:
控制器:
1 2 3 4 5 6 7 | [HttpPost("bug")] public ActionResult<string> Bug([FromForm] BugModel bugModel) { var message = GetMessage(bugModel); return Ok(message); } |
型号:
1 2 3 4 5 6 7 8 9 10 11 12 13 | public class BugModel { /// <summary> /// If you send a GUID it will not appear in this list /// </summary> public IEnumerable<Guid> Ids { get; set; } /// <summary> /// If you send 3 strings, the list will contain 1 entry with the 3 string comma separated. /// </summary> public IEnumerable<string> IdsAsStringList { get; set; } } |
CURL 调用:
结果:
看来我的问题在于 Swagger,而不是 ASP.NET Core
当我执行以下 CURL 命令时,一切正常:
这里的区别是,而不是使用
我用
我在 swagger repo 上创建了一个问题 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1107
我认为您的要求是问题所在。发布列表时,我总是为列表中每个元素的名称添加索引。
尝试将 Id 的名称更改为 Ids[0]="firstguidhere" Ids=[1]="secondguidhere"。