0

我在我的应用程序中使用了自定义 url。当我创建消息时,它会将我重定向到创建表单,但是当我提交表单时,它会再次重定向回相同的表单。如果设置了 $_POST 变量,则控制器中有一个条件,然后将其保存,否则重定向到表单。我认为 $_POST 变量没有设置,但是当我以它在那里打印的形式打印它时。那么,如果设置了 $_POST 变量,那么为什么条件会失败?以下是我的自定义网址。在使用自定义网址之前,它工作正常。

  'urlManager' => array(
                'urlFormat' => 'path',
                'showScriptName' => false,
                'rules' => array(
                    '' => 'questions/index',
                    'messages' => 'messages/index',
                    'tags' => 'tags/index',
                    'login' => 'site/login',
                    'signup' => 'users/create',
                    '<id:\w+>' => 'users/view',
                    '<controller:\w+>/<id:\d+>' => '<controller>/view',
                    '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
                    '<controller:\w+>/<action:\w+>' => '<controller>/<action>',
                    'gii' => 'gii',
                    'gii/<controller:\w+>' => 'gii/<controller>',
                    'gii/<controller:\w+>/<action:\w+>' => 'gii/<controller>/<action>',
                ),
            ),

这是我的 .htaccess 文件。

Options +FollowSymLinks
IndexIgnore */*
<IfModule mod_rewrite.c>
RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php
</IfModule>

这里有什么问题吗..?

编辑

这是我的控制器代码。

public function actionUpdate($id) {
        $model = $this->loadModel($id);

        if (isset($_POST['User'])) {
            $model->attributes = $_POST['User'];
            if ($model->save())
                $this->redirect(array('view', 'id' => $model->id));
        }

        $this->render('update_info', array(
            'model' => $model,
        ));
    }
4

1 回答 1

0

如果重定向没有发生,那么$model->save()就没有成功完成。您可以使用print_r($model->getErrors());查看验证错误。

于 2013-07-10T12:56:36.927 回答