javascript – 错误从MVC加载数据Jtable?

我在 codeproject.com/script/Articles/ArticleVersion.aspx?aid=277576&av=419297阅读了有关mvc的jtable的文章

我试试看.但是在运行时,我得到错误在与服务器通信时发生错误.
请看我的代码.在控制器中

[HttpPost]
        public JsonResult LocalList(int jtStartIndex,int jtPageSize,string jtSorting)
        {
            try
            {
                string localCount = db.Database.sqlQuery<string>("Select Count(*) FROM Location").ToString();
                IEnumerable<LOCATION> query = db.LOCATIONs;
                if (jtSorting.Equals("LOCATION_ID ASC"))
                {
                    query = db.LOCATIONs.OrderBy(e => e.LOCATION_ID).Skip(jtStartIndex).Take(jtPageSize).ToList();
                }
                else
                {
                    query = db.LOCATIONs.OrderBy(e => e.LOCATION_ID).Skip(jtStartIndex).Take(jtPageSize).ToList();
                }
                return Json(new { Result = "OK",Records = query,TotalRecordCount = int.Parse(localCount) });
            }
            catch (Exception ex)
            {
                return Json(new { Result = "ERROR",Message = ex.Message });
            }
        }

并在视图中

$('#div_local').jtable({
            title: 'List Location',paging: true,//Enable paging
            pageSize: 10,//Set page size (default: 10)
            sorting: true,//Enable sorting
            defaultSorting: 'LOCATION_ID ASC',//Set default sorting
            actions: {
                listAction: 'HomeController/LocalList'
            },fields: {
                AREA_ID: {
                    key: false,list: false,create: false
                },LOCATION_ID: {
                    key: true,LOCATION_NAME: {
                    title: 'Name'
                },LOCATION_DES: {
                    title: 'Des'
                }
            }
        });

        $('#div_local').jtable('load');

在这里,所有文件脚本和样式表都可以.当我看到登录chrome时,我找到了

Request URL:http://localhost:27508/HomeController/LocalList?jtStartIndex=0&jtPageSize=10&jtSorting=LOCATION_ID%20ASC
Request Method:POST
Status Code:404 Not Found

你能告诉我这里发生了什么错误错误吗?以及如何解决它.
谢谢你们.

解决方法

看起来listAction指向一个不存在的url(由于HTTP错误404).

您是否可以使用日志中的请求URL手动下载json?

相关文章

前言 做过web项目开发的人对layer弹层组件肯定不陌生,作为l...
前言 前端表单校验是过滤无效数据、假数据、有毒数据的第一步...
前言 图片上传是web项目常见的需求,我基于之前的博客的代码...
前言 导出Excel文件这个功能,通常都是在后端实现返回前端一...
前言 众所周知,js是单线程的,从上往下,从左往右依次执行,...
前言 项目开发中,我们可能会碰到这样的需求:select标签,禁...