当我在模型规则中没有使用安全参数时,我收到消息[警告] [application]无法设置“Comment”的不安全属性“id”。
但在我的php中,我可以查看新评论的ID
.....
if ($model->save()) {
$comment_id = $model->id; -- value of the new comment_id OK
}
.....
如果我把陈述
array('id', 'safe'),
在评论模型中。
我没有得到错误不再设置不安全但在我的PHP代码中comment_id等于NULL
有人有解释吗?