0
我使用的是蛋糕php 3.4。 我在數據庫中有客人和國家表。 我想以訪客和Contries的身份訪問這些表格對象。如何使用表名不同然後在數據庫中的蛋糕php 3
我想用這樣的:
$this->Guests->find();
,而不是
$this->Guest->find()
我使用的是蛋糕php 3.4。 我在數據庫中有客人和國家表。 我想以訪客和Contries的身份訪問這些表格對象。如何使用表名不同然後在數據庫中的蛋糕php 3
我想用這樣的:
$this->Guests->find();
,而不是
$this->Guest->find()
你有的src /型號/表創建一個modelGuestsTable.php/
namespace App\Model\Table;
use Cake\ORM\Table;
class GuestsTable extends Table
{
public function initialize(array $config)
{
$this->setTable('guest'); // your table name
// Prior to 3.4.0
// $this->table('guest');
}
}
相同g oes國家
它看起來不錯可能是我的問題將得到解決。感謝這一點,我會做同樣的事情,然後檢查。 –