gpt4 book ai didi

cakephp - 使用蛋糕的反馈/确认页面

转载 作者:行者123 更新时间:2023-12-04 06:58:50 25 4
gpt4 key购买 nike

输入两个字段并单击“提交”后,实现文本反馈的最佳方法是什么?

http://nyu.neighborrow.com/items

最佳答案

在您的 Controller 中,您可以设置

if ($this->Items->save($this->data)) {
$this->Session->setFlash('Your data has been submitted');
$this->redirect(array('action'=>'index'));
} else {
$this->Session->setFlash('Error saving the data');
}

http://book.cakephp.org/view/400/setFlash

或者
if ($this->Items->save($this->data)) {
$this->flash('Your data has been submitted', '/items/', 5);
}

http://book.cakephp.org/view/426/flash

关于cakephp - 使用蛋糕的反馈/确认页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2197600/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com