我正在将我的应用程序转换为cakephp 3.0,而我在查找方法中找不到使用邻居的替代方法。
我需要找到关联表中的下一条记录,邻居是一个很好的方法。
//Open courses
$options = [
'conditions' => ['Employees.user_id' => 1, 'CoursesEmployees.completed' => false],
'limit' => 3,
'contain' => 'Employees'
];
$recentOpen = $this->CoursesEmployees->find('all', $options)->toArray();
// get next module for each open course
foreach ($recentOpen as $key => &$value) {
$currentModule = $value['CourseModule']['id'];
$neighbors = $this->CoursesEmployees->CourseModules->find(
'neighbors',
['field' => 'id', 'value' => $currentModule]
);
$value['CourseModule']['next_module'] = $neighbors['next']['CourseModule']['name'];
};
我发现的代码的另一个问题是$this->CoursesEmployees->find('all', $options)->toArray();
似乎返回一个复杂的数组,其中包含了cakephp用于查询表的所有内容,而不是像cakephp 2那样的实际结果。我添加了{{1} }推荐用3.0
答案 0 :(得分:5)
因为我厌恶“答案”只是指向一个你可能或者可能无法在今天解读半答案的网址,但明天可能会消失,这是我的替代定制查找器:
// In src/Models/Table/ExampleTable.php
/**
* Find neighbors method
*/
public function findNeighbors(Query $query, array $options) {
$id = $options['id'];
$previous = $this->find()
->select('id')
->order(['id' => 'DESC'])
->where(['id <' => $id])
->first();
$next = $this->find()
->select('id')
->order(['id' => 'ASC'])
->where(['id >' => $id])
->first();
return ['prev' => $previous['id'], 'next' => $next['id']];
}
简单地在控制器中调用:
// In src/Controller/ExamplesController.php
public function view($id = null) {
...
$neighbors = $this->Examples->find('neighbors', ['id' => $id]);
....
}
答案 1 :(得分:0)
正如所解释here 在cakephp 3中没有邻居找到方法。
但如果您按照问题的流程进行操作,您会找到一个自定义查找器来完成它,也许它会对您有用。