>  기사  >  백엔드 개발  >  cakephp setFlash()及flash()方法都不起作用,setFlash()的具体用法及简单案例,该如何处理

cakephp setFlash()及flash()方法都不起作用,setFlash()的具体用法及简单案例,该如何处理

WBOY
WBOY원래의
2016-06-13 10:17:23959검색

cakephp setFlash()及flash()方法都不起作用,setFlash()的具体用法及简单案例
最近用cakephp框架开发,发现setFlash()方法不起作用,改方法主要用于提示信息并进行页面跳转,求助!
如果能够提供一个setFlash()使用案例最好
以下是本人代码:
1.players_controlly.php

PHP code
<!--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'))            }        }    }


   


------解决方案--------------------
http://blog.csdn.net/donnki/article/details/1771770
http://book.cakephp.org/1.3/cn/view/1313/setFlash
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.