.net asp mvc 如何从后端返回数据对象

今天在做项目时,有一个需求:获取从控制器返回的数组对象,方法如下

public ActionResult GetAllFiles()
        {
            string dir = Server.MapPath("../Upload/InterpAct_xlsx");
            string[] files = Directory.GetFiles(dir);
            return Json(files, JsonRequestBehavior.AllowGet);
        }

 

posted @ 2017-08-25 16:11  爱生活,爱代码  阅读(638)  评论(0编辑  收藏  举报