我正在构建一个Web应用程序。为此,我使用rails
作为backend
的api。还对react
使用frontend
。我有一个模型user
。我想向网站用户显示所有users
及其详细信息。因此,我有大约10,000多名用户。因此,我无法将所有用户都发送到前端。我一次只能显示50个用户。因此,要查看下50个用户,前端将向我发送新请求以获取下50个用户,依此类推。因此,我没有找到正确的构建路径。
现在,我正在让所有这样的用户感到不适,并且我的服务器正在挂起。
我的users_controller.rb
class UsersController < ApplicationController
def index
users = User.all
render_success(:ok, users, meta: { message: 'User sucessfully send' })
end
end
简而言之-在每个请求中,我只想发送有限数量的数据到前端。
答案 0 :(得分:2)
您可以使用limit
和offset
,这是一个示例,它非常简单,不需要任何库:
轨道代码:
# app/controllers/users_controller.rb
def users
users = User.limit(params[:limit]).offset(params[:offset])
render json: { users: users }
end
反应代码:
const PER_PAGE = 50 // How much users to load
export default class Users extends React.Component {
constructor(props) {
super(props)
this.state = {
offset: 0,
limit: PER_PAGE,
users: []
}
this.handlePageClickNext = this.handlePageClickNext.bind(this)
this.handlePageClickPrev = this.handlePageClickPrev.bind(this)
}
loadUsersFromServer() {
fetch(`/users?limit=${this.state.limit}&offset=${this.state.offset}`)
.then(response => response.json()).then(response => {
this.setState({ users: response.users })
})
}
handlePageClickPrev() {
// Load prev 10 users
let offset = this.state.offset - PER_PAGE
if (offset < 0) return
this.setState({offset: offset}, () => {
this.loadUsersFromServer();
});
};
handlePageClickNext() {
// Load next 10 users
let offset = this.state.offset + PER_PAGE
if (offset >= this.state.total) return
this.setState({offset: offset}, () => {
this.loadUsersFromServer();
});
};
componentDidMount() {
// Load users on start
this.loadUsersFromServer();
}
render() {
const users = this.state.users.map((u)=> {
return <li>{u.id}</li>
})
return (
<div>
<ul>
{users}
</ul>
<button onClick={this.handlePageClickPrev}>Prev</button>
<button onClick={this.handlePageClickNext}>Next</button>
</div>
);
}
}
答案 1 :(得分:2)
您可以使用gem 'kaminari'
在导轨中进行分页。
根据页码获取用户:
class UsersController < ApplicationController
def index
per_page = PAGINATION[:users] # you can define it in app_config.yml
users = User.page(params[:page]).per(per_page)
render json: { user_list: users, per_page: per_page, user_count: users.count, success: true }, status: :ok
end
结束
在反应中,您可以使用react-paginate
渲染分页块。
您可以在“用户索引”屏幕中呈现该图片
renderPaginateBlock = () => {
const { user_count, per_page } = this.props;
if (user_count > per_page) {
return (
<div align='center'>
<ReactPaginate
previousLabel={"<"} nextLabel={">"} marginPagesDisplayed={2}
pageRangeDisplayed={5} pageCount={this.props.user_count/this.props.per_page}
onPageChange={(data) => this.getUserWithPagination(data.selected + 1)}
containerClassName={"pagination custom"} subContainerClassName={"pages pagination"}
activeClassName={"active"}
/>
</div>
);
}
else {
return null;
}
}
这是设置current_page并访问API:
getUserWithPagination = (activePageNo) => {
const { fetchUsers } = this.props;
fetchUsers(activePageNo)
}
答案 2 :(得分:0)
我不知道这是否可以帮助您。但是您可以使用will_paginate gem
gem 'will_paginate'
gem 'bootstrap-will_paginate'
在索引函数中使用
@users = User.paginate(page: params[:page], per_page: 50)
使用此方法,您将在一个请求中发送并分页所有用户