.net core使用layui分页查询问题
前端代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
contentType: 'application/x-www-form-urlencoded' 这个不用写的
但是目前是参数值都为0
不应该用ActionResult,应该用string 返回,string是json数组内容转换后的结果,你做分页的话这两个参数是在前端发起请求的时候会自动附加传进来的