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'))
}
}
}
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号