我正在使用此模块 - yii-user.2mx.org
创建用户个人资料,我添加到profile_field
和profile
表,字段 - “地址”,但我收到此错误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 }
可能是什么问题?