なぜ「作者」による仕事のソートはありませんか?すべてのエラーをスローしない、ちょうどソートされていないcakephp並べ替えの問題を使用してください。
function index()
{
$this->paginate = array(
'limit' => 5,
'order' => array(
'Post.id' => 'asc',
),
'fields' => array('Post.id', 'Post.title', 'User.name AS aut_name'),
'joins' => array(
array(
'table' =>'users',
'alias' =>'User',
'type' =>'LEFT',
'conditions' => array(
'Post.author = User.id'
)
)
)
);
$posts = $this->paginate();
$this->set('posts', $posts);
}
<tr>
<th><?php echo $paginator->sort('ID', 'id'); ?></th>
<th><?php echo $paginator->sort('Author', 'User.name'); ?></th>
<th><?php echo $paginator->sort('Tilte', 'title'); ?></th>
<th>Actions</th>
</tr>
あなたのコードはない著者によって、Post.idによって、その分類を言う – chustar
しかし、 「