Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
チェックされたチェックボックスから値を取得する方法
すべてのデータは、フォームの送信後に$this->data(読み取り専用)または$this->request->data(変更可能)に保存されます。$this->data上記をdebug()呼び出しでラップして、返されたデータの構造を確認します。おそらく次のようになります。
$this->data
$this->request->data
debug()
array( 'ModelName' => array( 'name' => 'value', 'name' => 'value' ) )