我在我的应用程序中使用了自定义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,
));
}
答案 0 :(得分:0)
如果未发生重定向,则$model->save()
未成功完成。您可以使用print_r($model->getErrors());
查看验证错误。