.net core使用layui分页查询问题

发布于 2022-01-06 23:44:44 字数 2178 浏览 886 评论 3

前端代码:

   layui.use("table", function () {
            var table = layui.table;
            table.render({
                elem: '#user'
                , height: 312
                , url: '/user/UserList' //数据接口
                , page: true //开启分页
                , toolbar: '#toolbarNote'
                , contentType: 'application/x-www-form-urlencoded'
                , method:"get"
                , parseData: function (res) {
                }
                , cols: [[ //表头
                    { field: 'Account', title: '账号', width: 120, fixed: 'left' }
                    , { field: 'Username', title: '用户名', width:120 }
                    , { field: 'Sex', title: '性别', width: 120 }
                    , { field: 'Email', title: '邮箱', width:120, sort: true }
                    , { field: 'Permission', title: '权限', width: 120 }
                ]]
            })
        });

后台控制器:

 public IActionResult UserList(int page,int limit)
        {
            string pageIndex =Request.Form["page"].ToString();
            return View();
        }

我F12能看到参数,但是调试的时候两个参数一直为0,并且使用Request一直提示Incorrect Content-Type的错误。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浮生未歇 2022-01-07 18:55:11

 contentType: 'application/x-www-form-urlencoded'  这个不用写的

冷弦 2022-01-07 03:13:28

但是目前是参数值都为0

睫毛上残留的泪 2022-01-07 02:36:47

不应该用ActionResult,应该用string 返回,string是json数组内容转换后的结果,你做分页的话这两个参数是在前端发起请求的时候会自动附加传进来的

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文