作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于 $this->Session->setFlash('this is message','flash_error');
你
只需要在elements文件夹中创建flash_error.ctp
就可以有不同的外观。
但是 $this->Session->setFlash('this is message')
是什么?如何修改标准布局?我不想用 css 或 javascript 修改它。
最佳答案
Laheab 的回答是正确的。但是您可以使用 AppController
beforeRender
函数覆盖它。在您的app/app_controller.php
中编写以下函数:
function beforeRender(){
if ($this->Session->check('Message.flash')) {
$flash = $this->Session->read('Message.flash');
if ($flash['element'] == 'default') {
$flash['element'] = 'flash_error';
$this->Session->write('Message.flash', $flash);
}
}
}
app/views/elements
中创建
flash_error.ctp
关于cakephp - 如何超速cakePHP的FLASH MESSAGE默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3590097/
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 3 年前。 Improve this qu
我是一名优秀的程序员,十分优秀!