We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
首先,感谢您提供的这个方便的分页插件;
在使用中发现命名的不规范会造成理解上的困惑(甚至让新手养成坏习惯,就像 jqGrid中默认的分页信息的命名就比较乱,我们配置了自己映射),进行了如下的命名规范(页面 jqGrid , 后台 分页等):
domain.Order => domain.OrderItem
domain.PageBounds => domain.PageBounds { page => pageNumber, limit => pageSize, orders => orderItems
}
domain.PageList => domain.PagedList
domain.Paginator => domain.Paginator { page => pageNumber, limit => pageSize, isHasPrePage => hasPrePage, isHasNextPage => hasNextPage, computePageNo => computePageNumber
PageListJsonMapper => PagedListJsonMapper
PageListJsonSerializer => PagedListJsonSerializer
PageListAttrHandlerInterceptor => PagedListAttrHandlerInterceptor
"PageListJSONModule" => "PagedListJsonModule"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
首先,感谢您提供的这个方便的分页插件;
在使用中发现命名的不规范会造成理解上的困惑(甚至让新手养成坏习惯,就像 jqGrid中默认的分页信息的命名就比较乱,我们配置了自己映射),进行了如下的命名规范(页面 jqGrid , 后台 分页等):
domain.Order => domain.OrderItem
domain.PageBounds => domain.PageBounds {
page => pageNumber,
limit => pageSize,
orders => orderItems
}
domain.PageList => domain.PagedList
domain.Paginator => domain.Paginator {
page => pageNumber,
limit => pageSize,
isHasPrePage => hasPrePage,
isHasNextPage => hasNextPage,
computePageNo => computePageNumber
}
PageListJsonMapper => PagedListJsonMapper
PageListJsonSerializer => PagedListJsonSerializer
PageListAttrHandlerInterceptor => PagedListAttrHandlerInterceptor
"PageListJSONModule" => "PagedListJsonModule"
The text was updated successfully, but these errors were encountered: