Laravel previous and next records(Laravel 上一个和下一个记录)
问题描述
我正在尝试创建一个页面,我可以在其中查看数据库中的所有人并对其进行编辑.我制作了一个表格,在其中填写某些字段的数据库中的数据.
我想通过下一个和上一个按钮浏览它们.
为了生成下一步,我必须使用比当前更大的 ID 来加载下一个配置文件.
为了生成上一步,我必须使用小于当前 ID 的 ID 来加载先前的配置文件.
我的路线:
Route::get('users/{id}','UserController@show');
控制器:
public function show($id){$input = User::find($id);//如果用户单击下一步,则应执行此操作.$input = User::where('id', '>', $id)->firstOrFail();echo '';dd($输入);echo '</pre>';return View::make('hello')->with('input', $input);}
查看:按钮:
<a href="{{ URL::to( 'users/' . $input->id ) }}">Next</a>
获取当前 ID 并增加它的最佳方法是什么?
以下是从@ridecar2 链接派生的更新的控制器和视图文件,
控制器:
public function show($id){//获取当前用户$user = User::find($id);//获取之前的用户ID$previous = User::where('id', '<', $user->id)->max('id');//获取下一个用户ID$next = User::where('id', '>', $user->id)->min('id');return View::make('users.show')->with('previous', $previous)->with('next', $next);}
查看:
<a href="{{ URL::to( 'users/' . $previous ) }}">Previous</a><a href="{{ URL::to( 'users/' . $next ) }}">Next</a>
I am trying to create a page where I can see all the people in my database and create edits on them. I made a form where I fill in the data from the database of certain fields.
I would like to navigate trough them by a Next and Previous button.
For generating the next step I have to take the ID larger than the current one to load the next profile.
For generating the previous step I have to take the ID smaller than the current one to load the previous profile.
My route:
Route::get('users/{id}','UserController@show');
Controller:
public function show($id)
{
$input = User::find($id);
// If a user clicks next this one should be executed.
$input = User::where('id', '>', $id)->firstOrFail();
echo '<pre>';
dd($input);
echo '</pre>';
return View::make('hello')->with('input', $input);
}
View: The buttons:
<a href="{{ URL::to( 'users/' . $input->id ) }}">Next</a>
What is the best approach to get the current ID and increment it?
Below are your updated controller and view files derived from @ridecar2 link,
Controller:
public function show($id)
{
// get the current user
$user = User::find($id);
// get previous user id
$previous = User::where('id', '<', $user->id)->max('id');
// get next user id
$next = User::where('id', '>', $user->id)->min('id');
return View::make('users.show')->with('previous', $previous)->with('next', $next);
}
View:
<a href="{{ URL::to( 'users/' . $previous ) }}">Previous</a>
<a href="{{ URL::to( 'users/' . $next ) }}">Next</a>
这篇关于Laravel 上一个和下一个记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 上一个和下一个记录
基础教程推荐
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01