我有这个代码:
if request.post? and @user.save
@contact.user_id = @user.id
@contact.save
flash[:notice] = l(:e_user_saved)
redirect_to :action => 'list'
end
但是当 rails 保存联系人时,user_id 仍然为空。
当我调试时,我看到它分配了值,但是当它保存时它保存了 null。为什么???