登録フォームでは、パスワード フィールドとパスワードの確認フィールドを使用しました。このデータを使用した後は、更新できません。モデル
public function rules()
{
// NOTE: you should only define rules for those attributes that
return array(
array('name, password', 'required'),
array('password', 'compare', 'compareAttribute'=>'confirm_password'),
array('name', 'length', 'max'=>55),
// The following rule is used by search().
// Please remove those attributes that should not be searched.
array('id, name', 'safe', 'on'=>'search'),
);
}
index.php からユーザー モデルを更新しようとしています
`$post= User::model()->findByPk(1); $post->name='Abcdef'; $post->password='newpassword'; $post->save();`
新しいデータが更新されていませんか?解決したら?