使用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.
public function index() { $sortby = Input::get('sortby'); $order = Input::get('order'); if ($sortby && $order) { $posts = $this->post->orderBy($sortby, $order)->get(); } else { $posts = $this->post->get(); } }
以上是关于使用Laravel 4的可排序索引视图表的主要内容,如果未能解决你的问题,请参考以下文章
使用 Laravel 4+ 从 jQuery/ajax 保存序列化的可排序数据