我正在尝试在用户位于特定页面时设置页面索引,并仅对该索引进行排序。但即使手动输入PageIndex值,PageIndex总是设置为1.怎么办?
SELECT * FROM ${db.schema.name}.product WHERE id = :id
我的控制器
echo '<img src="../imgProduct/' .$num. '" alt="random image"> <br />';
我的观点
function LoadUser(columnname, sort, IsClient) {
var className = $('#' + columnname).attr('class');
IsClient = $('#ChkIsClient').is(':checked')
$.ajax({
type: "GET",
url: "/admin/Setting/UserGrid",
contentType: "application/json; charset=utf-8",
data: { PageIndex: 2, filter: $("#txtSearchUser").val(), SortColumnName: columnname, sort: sort, IsClient: IsClient },
dataType: "html",
success: function (response) {
$('#Setting_content').html("");
$('#Setting_content').html(response);
},
failure: function (response) {
alert(response.responseText);
},
error: function (response) {
alert(response.responseText);
}
});
我不明白出了什么问题。即使在放入页面索引时,它也不起作用,它仍然取值1.即默认值。