前提・実現したいこと
Flashコンポーネントの基本的なところですが、公式ページ通りに第2引数に連想配列としてkeyを与えても表示されずにいます。
どこか間違っているのか、抜けているのでしょうか。
該当のソースコード
PHP
1// Controller 2public function index(){ 3 $this->Flash->success('成功した!', ['element' => 'flash', 'key' => 'hoge']); 4 } 5 6// Layout 7<?= $this->Flash->render('hoge') ?>
keyを入れない状態だと表示されます。
PHP
1// これは表示される 2// Controller 3public function index(){ 4 $this->Flash->success('成功した!', ['element' => 'flash']); 5 } 6 7// Layout 8<?= $this->Flash->render() ?>
あなたの回答
tips
プレビュー