2017-05-05 52 views

回答

1

你有的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國家

+0

它看起來不錯可能是我的問題將得到解決。感謝這一點,我會做同樣的事情,然後檢查。 –