使用Laravel 4的可排序索引视图表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Laravel 4的可排序索引视图表相关的知识,希望对你有一定的参考价值。

In this article I would like to share how to make a sortable index view with Laravel 4.

Let’s assume you have an index view with a table. Like this example for a table that contains posts.
  1. public function index()
  2. {
  3. $sortby = Input::get('sortby');
  4. $order = Input::get('order');
  5.  
  6. if ($sortby && $order) {
  7. $posts = $this->post->orderBy($sortby, $order)->get();
  8. } else {
  9. $posts = $this->post->get();
  10. }
  11.  
  12. return View::make('posts.index', compact('posts', 'sortby', 'order'));
  13. }

以上是关于使用Laravel 4的可排序索引视图表的主要内容,如果未能解决你的问题,请参考以下文章

使用 Laravel 4+ 从 jQuery/ajax 保存序列化的可排序数据

laravel5.2如何创建视图表

PostgreSQL查看表表索引视图表结构以及参数设置

在一个视图表中对多个模型进行排序

无法通过从下拉选择转换的选定字段代码使用 SQL 访问全局视图表

sqlserver怎么查看表的内容