我有一个如下的用户表单,带有一个复选框,将用户设置为admin:
<%= form_for @user do |f| %>
<%= render 'shared/error_messages', :object => f.object %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :email %><br />
<%= f.text_field :email %>
</div>
<div class="field">
<%= f.label :password %><br />
<%= f.password_field :password %>
</div>
<div class="field">
<%= f.label :password_confirmation, "Confirmation" %><br />
<%= f.password_field :password_confirmation %>
</div>
<%= hidden_field_tag :group_id, @group.id %>
**<div class="field">
<%= f.check_box :admin %>
</div>**
<div class="actions">
<%= f.submit "Sign up" %>
</div>
<% end %>
我的用户表格如下
create_table "users", :force => true do |t|
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
t.string "email"
t.string "encrypted_password"
t.string "salt"
t.boolean "admin", :default => false
t.integer "group_id"
end
我的用户控制器
中的用户创建操作如下def create
@group = Group.find(params[:group_id])
@user = @group.users.build(params[:user])
if @user.save
flash[:success] = "You have created a new user"
redirect_to groups_path
else
@title = "Sign up"
render 'new'
end
end
但是当我测试user.admin为true时,它不会显示为true
<% @users.each do |user| %>
<li>
<%if user.admin == true %>
<%= link_to user.name, user %>
<% end%>
</li>
<% end %>
表单工作正常,否则只有check_box不会将user.admin设置为true。我错过了某个关键步骤吗?感谢
答案 0 :(得分:1)
您确定数据库中的值是否设置为true?使用dbconsole检查它:
rails dbsconsole
如果没有,那么您可能需要确保可以在用户模型中访问它:
attr_accessible :admin
此外,作为旁注,布尔值在ActiveRecord中带有奖励问号方法,因此您可以这样做:
if user.admin?