如何使用这种数组格式

本文关键字:数组 格式 何使用 | 更新日期: 2023-09-27 18:36:28

如何使用这种格式?

var dataSet = [
['Trident', 'Internet Explorer 4.0', 'Win 95+', '4', 'X']
];

我想把我的知识放在这种格式的服务器端或javascript上谢谢

public ActionResult GetModuls()
{   
   var model = BLcontext.GetModuls();      
   return Json(new { data = model }, JsonRequestBehavior.AllowGet);                       
}

如何使用这种数组格式

1)如果你想返回JSON-写字符串或JsonResult在你的方法的类型。喜欢:

public JsonResult GetModuls()
{   
   var model = BLcontext.GetModuls();      
   return Json(new { data = model }, JsonRequestBehavior.AllowGet);                       
}

2)我喜欢使用Newtonsoft与Json一起工作

这个问题非常不清楚。如果您只是尝试将其转换为 C#:

var dataSet = new[] {
    new[] {"Trident", "Internet Explorer 4.0", "Win 95+", "4", "X"}
};

如果您尝试序列化/反序列化:请使用 JSON 序列化程序。

它基本上是数组数组。在 c# 中,您必须执行以下操作:

public ActionResult GetModuls()
{
 List<string> words = new List<string> { "Trident", "Internet Explorer 4.0", "Win 95+", "4", "X" };
 List<string> words2 = new List<string> { "MVC", "C#", "LINQ" };
 List<List<string>> listofLists = new List<List<string>> { words,words2 };
 return Json(new { data = listofLists }, JsonRequestBehavior.AllowGet);
}

我正在使用列表列表,您可以使用数组数组,但它将以 json 格式转换为数组。