Cakephp の setFlash() メソッドと flash() メソッドが機能しない setFlash() の具体的な使い方と簡単なケース
最近、cakephp フレームワークを使用して開発したのですが、setFlash() メソッドが機能しないことが主に修正されました。情報のプロンプトとページ ジャンプの実行に使用されます。助けてください!
setFlash() の使用例を提供していただければ幸いです
以下は私のコードです:
1.players_controlly.php
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> /* * 删除视频信息 * @param $id */ public function del_player($id=0) { if ($id==0 || empty($id)){ $this->flash("参数错误,请确认操作.","javascript:history.go(-1);"); }else{ $movie_info=$this->players->check_player_id($id); if ($movie_info){ $this->list_player(); $this->render(null, null, 'list_player'); }else{ $this->flash("参数错误,请确认操作.","javascript:history.go(-1);"); //或者 $this->Session->setFlash('参数错误,请确认操作.', 'default', array('class' => 'type_class')) } } }