码迷,mamicode.com
首页 > 其他好文 > 详细

yii2表单提交不刷新的问题

时间:2017-01-08 09:10:34      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:date()   x11   form   email   yii   提交   err   return   bsp   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public function actionContact()
    {
        $model new ContactForm();
        if ($model->load(Yii::$app->request->post()) && $model->validate()) {
            if ($model->sendEmail(Yii::$app->params[‘adminEmail‘])) {
                Yii::$app->session->setFlash(‘success‘‘Thank you for contacting us. We will respond to you as soon as possible.‘);
            else {
                Yii::$app->session->setFlash(‘error‘‘There was an error sending email.‘);
            }
            return $this->refresh();
        else {
            return $this->render(‘contact‘, [
                ‘model‘ => $model,
            ]);
        }
    }

参见自带SiteController.php中Contact方法

1
return $this->refresh();

这行代码即可

 

yii2表单提交不刷新的问题

标签:date()   x11   form   email   yii   提交   err   return   bsp   

原文地址:http://www.cnblogs.com/longzhankunlun/p/6261414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!