返回顶部
首页 > 资讯 > 前端开发 > JavaScript >Vue与.net Core 接收List<T>泛型参数
  • 495
分享到

Vue与.net Core 接收List<T>泛型参数

2024-04-02 19:04:59 495人浏览 八月长安
摘要

目录1、不能接收到的情况2、 能接收到的情况Vue Element-ui axiOS-post请求,axios默认请求提的Content-Type为application/

  • Vue Element-ui axiOS-post请求,axios默认请求提的Content-Type为application/JSON
  • .net core后端接收参数有List<T>泛型参数,如何才能正确接收呢

1、不能接收到的情况


var data=[]
data.push({
  id:1,
  name:'aaa'
})
data.push({
  id:2,
  name:'bbb'
})
data.push({
  id:3,
  name:'ccc'
})
  •  后端代码
[HttpPost]
public jsonResult Data(List<entity> list)
{
    return Json(new { c = 200, m = "test" });
}
public class entity
{
    public int id { get; set; }
    public string name { get; set; }
}

2、 能接收到的情况

  • 前端参数值

var data={
    length:0,
    list:[]
}
var list=[]
list.push({
  id:1,
  name:'aaa'
})
list.push({
  id:2,
  name:'bbb'
})
list.push({
  id:3,
  name:'ccc'
})
data.length=list.lenght
data.list=list
  •  后端代码
[HttpPost]
public JsonResult Data(entity entity)
{
    return Json(new { c = 200, m = "test" });
}
public class entity
{
    public int length { get; set; }
    public List<model> list { get; set; }
}
public class model
{
    public int id { get; set; }
    public string name { get; set; }
}

到此这篇关于Vue与.Net Core 接收List<T>泛型参数的文章就介绍到这了,更多相关接收List<T>泛型参数内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: Vue与.net Core 接收List<T>泛型参数

本文链接: https://lsjlt.com/news/146638.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作