在Yii配置文件字段上添加自定义字段

时间:2014-02-16 05:26:18

标签: php yii

我正在使用此模块 - yii-user.2mx.org创建用户个人资料,我添加到profile_fieldprofile表,字段 - “地址”,但我收到此错误regiser页面和编辑profilr页面。

Property "Profile.address " is not defined.
framework/db/ar/CActiveRecord.php(143)

 {
134         if(isset($this->_attributes[$name]))
135             return $this->_attributes[$name];
136         elseif(isset($this->getMetaData()->columns[$name]))
137             return null;
138         elseif(isset($this->_related[$name]))
139             return $this->_related[$name];
140         elseif(isset($this->getMetaData()->relations[$name]))
141             return $this->getRelated($name);
142         else
143             return parent::__get($name);
144     }

可能是什么问题?

0 个答案:

没有答案