有两种型号,User和UserProfile。保存新用户时,使用单个表单将数据保存到两个模型/表中。这是控制器操作。
public function actionCreate($role)
{
$User = new User;
$UserProfile = new UserProfile;
Yii::app()->params['u_role'] = $role;
if(isset($_POST['User'], $_POST['UserProfile']))
{
$User->attributes=$_POST['User'];
$UserProfile->attributes=$_POST['UserProfile'];
$valid=$User->validate();
if($valid)
{
if($User->save(false))
{
$UserProfile->user_id = $User->id;
if ($UserProfile->save())
{
$model=User::model()->with('userProfiles')->findByPk($User->id);
$this->redirect(array('manage/list'));
}
}
}
}
$this->render('create', array(
'User'=>$User,
'UserProfile'=>$UserProfile,
));
}
模型,关系,视图和创建操作似乎工作正常,我可以将新用户的数据保存到两个表中。问题是User模型中有一个字段,'role'不是从表单提供的,而是预先设置的,具体取决于传递给控制器操作的参数($ role)。我将此$ role值设置为create action本身的应用程序参数
Yii::app()->params['u_role'] = $role;
在User模型中,我使用一个函数来根据此app参数的值确定字段的值。这是函数,
public function fixUrole()
{
$returnUrole;
if (Yii::app()->params['u_role']=='adm')
{
$returnUrole=1;
}
else if (Yii::app()->params['u_role']=='mgr')
{
$returnUrole=2;
}
return $returnUrole;
}
从beforeValidate()
调用,如下所示。
$this->role = $this->fixUrole();
问题是,使用应用程序参数获取值时出现问题。如果我对函数fixUrole()
中的值进行硬编码,则会保存/正常工作。但否则函数返回'空白'。这里出了什么问题?另外,我不完全确定我是否以正确的方式做我想做的事情,那么还有更好的方法吗?
编辑:这是config main.php
<?php
// uncomment the following to define a path alias
// Yii::setPathOfAlias('local','path/to/local-folder');
// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=>'MY APP NAME',
// preloading 'log' component
'preload'=>array(
'log',
'bootstrap'),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
),
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'enter',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
'generatorPaths' => array(
'bootstrap.gii'
),
),/**/
),
// application components
'components'=>array(
'user'=>array(
//'allowAutoLogin'=>true,
'class' => 'WebUser',
),
'bootstrap' => array(
'class' => 'ext.bootstrap.components.Bootstrap',
'responsiveCss' => true,
),
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=testdb1',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
),
'errorHandler'=>array(
// use 'site/error' action to display errors
'errorAction'=>'site/error',
),
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning',
),
// uncomment the following to show log messages on web pages
array(
'class'=>'CWebLogRoute',
),
/**/
),
),
),
// application-level parameters that can be accessed
// using Yii::app()->params['paramName']
'params'=>array(
// this is used in contact page
'adminEmail'=>'webmaster@example.com',
'u_role'=>'',
),
);
答案 0 :(得分:0)
我认为您不能在运行时(在控制器中)设置/更改参数。
请注意,此方法适用于静态配置参数 - 不提供在运行时更改(或保留)或每用户设置的动态参数。< / p>
请查看本文以了解正确用法:http://www.yiiframework.com/wiki/126/setting-and-getting-systemwide-static-parameters/
答案 1 :(得分:0)
你可以试试 的的Yii ::应用程序() - &GT;会话( 'u_role')强> this tutorial也可以帮到你。