Min*_*ure 5 php cakephp model associations
当我搜索"有很多"其他东西的模型时.
例如,博客文章有许多类别.
搜索与相关类别相关的博文时,如何订购相关类别?返回数组时,它会忽略类别模型上的顺序,并默认为通常的id顺序.
干杯.
Nik*_*kov 23
此外,您可以在模型的关系中设置顺序.
<?php
class Post extends AppModel {
var $hasMany = array(
'Category' => array(
'className' => 'Category',
...
'order' => 'Category.name DESC',
....
),
}?>
Run Code Online (Sandbox Code Playgroud)