这是我在控制器中所做的(工作正常):
public JsonResult DepartmentList(string id)
{
JsonResult jr = new JsonResult();
var _menu = from a in DataContext.GetDepartment()
select new { ID = a.ID, Name = a.Name };
jr.Data = _menu.ToList();
jr.JsonRequestBehavior = JsonRequestBehavior.AllowGet;
return jr;
}
我想使用javascript来获取我在以下控制器中返回的JSON以显示在列表中并获取结果:
<a href="blahblah.com/Products/dep=1?tab=2"> Department name1 </a>
<a href="blahblah.com/Products/dep=2?tab=2"> Department name2 </a>
....
谢谢。
最佳答案
http://api.jquery.com/jQuery.getJSON/
关于jquery - 使用javascript从 Controller 获取JSON以在 View 中显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9680867/