I 3 Tabellen, categories
, products
und seller_products
und ihre Verbände sind wie CategoriesTable.phpCakePHP 3: Multi-Level-Verein
$this->hasMany('Products', [
'foreignKey' => 'category_id'
]);
ProductsTable.php
$this->hasMany('SellerProducts', [
'foreignKey' => 'product_id'
]);
$this->belongsTo('Categories', [
'foreignKey' => 'category_id',
'joinType' => 'INNER'
]);
VerkäuferProdukteTabelle.php
Jetzt$this->belongsTo('Products', [
'foreignKey' => 'product_id',
'joinType' => 'INNER'
]);
, Im view
von categories
(site.com/categories/view/2
), muss ich alle Produkte Daten wählen Sie aus products
und sellerProducts
wo Produkte zur Kategorie-ID gehört, und gibt es auch in sellerProducts. dh.,
products.category_id = $id AND sellerProducts.product_id = Products.id
Gibt es eine einfache Möglichkeit, in CakePHP 3 das Ergebnis zu erhalten?
bearbeiten 2
Das ist, was ich versuche. In view()
Wirkung von CategoriesController.php
$this->loadModel('Products');
$sellerProducts = $this->Products->find('all', [
'conditions' => [
'category_id' => $id
],
'joins' => [
'table' => 'SellerProducts',
'alias' => 'SellerProducts',
'type' => 'INNER',
'conditions' => [
'SellerProducts.product_id' => 'Products.id',
'stock >' => 0
]
]
]);
debug($sellerProducts);
foreach($sellerProducts as $a) {
debug($a);
}
auf debug
gibt es nur die Daten aus Products
Tabelle aber nicht von SellerProducts
Scheint eine sehr einfache Aufgabe, was hast du bisher versucht? – arilia
@arilia siehe 'edit 2' –