作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有3个型号Employees
Customers
和Partners
我想显示所有表的计数employees
customers
和partners
在dashboard
查看Employees
型号。
EmployeesController.php
<?php
namespace App\Controller;
class EmployeesController extends AppController
{
public function dashboard()
{
}
}
?>
我是 cakephp 的新手,我根本不知道如何查询其他模型表。
请向我指出有关此内容的良好教程或文档。会有帮助的
最佳答案
我使用以下代码修复了它。
// Controller
$this->loadModel("Customer");
$query = $this->Customers->find('all', [
'conditions' => ['Customers.area_cd =' => $this->Auth->user('area_cd')]
]);
$entity_count[0] = $query->count();
$this->loadModel("Employee");
$query = $this->Employees->find('all', [
'conditions' => ['Employees.area_cd =' => $this->Auth->user('area_cd')]
]);
$entity_count[1] = $query->count();
$this->loadModel("Partner");
$query = $this->Partners->find('all', [
'conditions' => ['Partners.area_cd =' => $this->Auth->user('area_cd')]
]);
$entity_count[2] = $query->count();
$this->set(compact('entity_count'));
// View
<?= $entity_count[0] ?>
关于mysql - cakephp3 从其他模型中选择 count(*),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35130448/
我是一名优秀的程序员,十分优秀!