gpt4 book ai didi

php - 在 YII 框架中提交按钮后停留在当前页面

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:44:44 24 4
gpt4 key购买 nike

我正在尝试提交表单,表单提交后当前页面应该保留用户输入的数据。如何实现?

public function actionUpload()
{

$model=new UploadModel();
$basemodel=new BaseContactList();
$importmodel=new ImportedFilesModel();


$importmodel->name =$basemodel->name;
$importmodel->import_date = $now->format('Y-m-d H:i:s');
$importmodel->server_path = $temp;
$importmodel->file_name = $name;
$importmodel->crm_base_contact_id = $crm_base_contact_id;

if ($importmodel->save())
echo "Import saved";
else
echo "Import Not Saved";
unset($_POST['BaseContactList']);
$this->redirect(Yii::app()->request->urlReferrer);

}

这一行 "$this->redirect(Yii::app()->request->urlReferrer);" 转到上一页但用户输入的值被清除。如何在不清除表单中的值的情况下重定向到上一页??

最佳答案

与模型保存失败后查看错误消息时相同。您可以将保存的模型传递给表单,而不是进行重定向。

public function actionIndex(){
$model = new Model();
if (isset($_POST[get_class($model)]){
$model->setAttributes($_POST[get_class($model)]);
if ($model->save()){
//do nothing
//usually people do a redirection here `$this->redirect('index');`
//or you can save a flash message
Yii::app()->user->setFlash('message', 'Successfully save form');
} else {
Yii::app()->user->setFlash('message', 'Failed to save form');
}
}
//this will pass the model posted by the form to the view,
//regardless whether the save is successful or not.
$this->render('index', array('model' => $model));
}

index View 中,您可以执行类似的操作。

<?php if (Yii::app()->user->hasFlash('message')):?>
<div class="message"><?php echo Yii::app()->user->getFlash('message');?></div>
<?php endif;?>
<?php echo CHtml::beginForm();?>
<!-- show the form with $model here --->
<?php echo CHtml::endForm();?>

缺点是,当您不小心按下刷新按钮 (F5) 时,它会尝试再次发布表单。

或者您可以使用 setFlash 使用用户 session 保存它。

public function actionUpload()
{

$model=new UploadModel();
$basemodel=new BaseContactList();
$importmodel=new ImportedFilesModel();


$importmodel->name =$basemodel->name;
$importmodel->import_date = $now->format('Y-m-d H:i:s');
$importmodel->server_path = $temp;
$importmodel->file_name = $name;
$importmodel->crm_base_contact_id = $crm_base_contact_id;

if ($importmodel->save())
echo "Import saved";
else
echo "Import Not Saved";
unset($_POST['BaseContactList']);

//here we go
Yii::app()->user->setFlash('form', serialize($basemodel));
//
$this->redirect(Yii::app()->request->urlReferrer);

}

在之前的表单中,您从 session 中加载值。

public function actionForm(){
if (Yii::app()->user->hasFlash('form')){
$basemodel = unserialize(Yii::app()->user->getFlash('form');
} else {
$basemodel = new BaseContactList();
}
$this->render('form', array('basemodel' => $basemodel));
}

关于php - 在 YII 框架中提交按钮后停留在当前页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20897926/

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