1

我通常遵循 Yii 扩展:多语言行为指令,这是我的模型行为配置:

public function behaviors() 
{
    return array(
        'ml' => array(
            'class' => 'application.models.behaviors.MultilingualBehavior',
            'langClassName' => 'CandidateLang',
            'langTableName' => 'candidatelang',
            'langForeignKey' => 'candidate_id',
            'langField' => 'lang_id',
            'localizedAttributes' => array('name', 'birth_place', 'home_city', 'intro'), //attributes of the model to be translated
            'localizedPrefix' => 'l_',
            'languages' => Yii::app()->params['languages'], // array of your translated languages. Example : array('fr' => 'Français', 'en' => 'English')
            'defaultLanguage' => 'en', //your main language. Example : 'fr'
            'createScenario' => 'insert',
            'localizedRelation' => 'i18nCandidate',
            'multilangRelation' => 'multilangCandidate',
            'forceOverwrite' => false,
            'forceDelete' => true, 
            'dynamicLangClass' => true, //Set to true if you don't want to create a 'PostLang.php' in your models folder
        ),
    );
}

我得到一个 CDbException:在数据库中找不到活动记录类“CandidateLang”的表“{{candidatelang}}”。

这是触发错误的地方:

private $_model;
2253 
2254     /**
2255      * Constructor.
2256      * @param CActiveRecord $model the model instance
2257      */
2258     public function __construct($model)
2259     {
2260         $this->_model=$model;
2261 
2262         $tableName=$model->tableName();
2263         if(($table=$model->getDbConnection()->getSchema()-   >getTable($tableName))===null)
2264             throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.',
2265                 array('{class}'=>get_class($model),'{table}'=>$tableName)));
2266         if($table->primaryKey===null)
2267         {
2268             $table->primaryKey=$model->primaryKey();
2269             if(is_string($table->primaryKey) && isset($table->columns[$table->primaryKey]))
2270                 $table->columns[$table->primaryKey]->isPrimaryKey=true;
2271             else if(is_array($table->primaryKey))
2272             {
2273                 foreach($table->primaryKey as $name)
2274                 {
2275                     if(isset($table->columns[$name]))
2276                         $table->columns[$name]->isPrimaryKey=true;

我确保桌子在那里,并仔细检查了大小写和拼写。我什至尝试从架构中放置不同的表名,但没有任何运气!所以我猜这个调用会导致错误: $model->getDbConnection(),但我不知道为什么或如何修复它?

4

2 回答 2

1

我有同样的问题,我修复了它。在主配置集中tablePrefix => '',问题应该得到解决。

于 2012-07-17T07:02:43.217 回答
0

我试图db像这样强制自动生成模型变量:

    public function createLangClass() {
    if(!class_exists($this->langClassName, false)) {
        $owner_classname = get_class($this->getOwner());
        eval("class {$this->langClassName} extends CActiveRecord
        {
                  //Forcing model db variable
            self::db = Yii::app()->getDb();

            public static function model(\$className=__CLASS__)
            {
                return parent::model(\$className);
            }

            public function tableName()
            {
                return '{{{$this->langTableName}}}';
            }

            public function relations()
            {
                return array('$owner_classname' => array(self::BELONGS_TO, '$owner_classname', '{$this->langForeignKey}'));
            }

        }");
    }
} 

我还是不知道为什么!!但它似乎有效,因为它CdbException已经消失了

但是我遇到了一个新错误,Yiibase 抱怨找不到动态自动生成的模型文件!我之前在 Yii 中没有使用动态类的经验,但我仍然怀疑这个问题是 yii1.1.10 的新问题。如果您有任何快速修复请评论,否则我将发布一个新问题。

于 2012-07-15T08:00:33.657 回答