欢迎来到福编程网,本站提供各种互联网专业知识!

基于MVC5和Bootstrap的jQuery TreeView树形控件(一)之数据支持json字符串、list集合

发布时间:2016-08-11 作者:XL、 来源:转载
这篇文章主要介绍了基于MVC5和Bootstrap的jQueryTreeView树形控件(一)之数据支持json字符串、list集合的相关者,小编推荐使用返回list集合的方法,具体原因大家可以根据本文学习下

本文支持两种方式的数据,一种为List集合,一种为json字符串。

先来介绍一下后台返回list集合(推荐使用此方法):

控制器代码如下:

public static List DInfo = new List();
/// 
/// TreeView视图
/// 
/// 
public ActionResult May(string TypeCode,int parentId)
{
ViewBag.TypeCode = TypeCode;
ViewBag.ParentId = parentId;
return View();
}
[HttpPost]
public ActionResult GetTreeData(string TypeCode,int parentId)
{
List DInfo = dbll.GetModelList("TypeCode="+TypeCode);
return Json(GetChildNodes(0,new NodeModel(){}, DInfo).nodes);
}
///
/// GetChildNodes方法,此方法使用递归
/// 
/// 
/// 
public NodeModel GetChildNodes(int parentId,NodeModel childnodestr,List DInfo)
{
List DictionaryList = DInfo.Where(e => Convert.ToInt32(e.ParentId) == parentId).ToList();
for (int i = 0; i < DictionaryList.Count; i++)
{
NodeModel NewNode = new NodeModel();
NewNode.DicId = DictionaryList[i].DicId;
NewNode.text = DictionaryList[i].DICName;
NewNode.ParentId = DictionaryList[i].ParentId;
childnodestr.nodes.Add(NewNode);
GetChildNodes(NewNode.DicId, NewNode, DInfo);
}
return childnodestr;
}

视图代码如下: