我有一个条目控制器,允许用户在网站上添加联系信息。在管理员选中复选框并提交表单之前,用户无法看到用户提交的信息。所以基本上我的问题是,如果我在最初创建条目(条目#new)时以管理员身份选中复选框,则条目将按预期公开显示,但如果非管理员用户创建条目(普通用户视图不不包括'live'复选框,只有管理员才会这样做)然后该条目陷入困境,因为条目#edit view由于某种原因在以管理员身份登录时不会更新布尔复选框值。
条目#new view:
<% form_for(@entry) do |f| %>
<%= f.error_messages %>
Name<br />
<%= f.text_field :name %>
Mailing Address<br />
<%= f.text_field :address %>
#...
<%- if current_user -%>
<%= f.label :live %><br />
<%= f.check_box :live %>
<%- end -%>
<%= f.submit 'Create' %>
<% end %>
条目#edit(仅供管理员访问)视图:
<% form_for(@entry) do |f| %>
<%= f.error_messages %>
<%= f.label :name %><br />
<%= f.text_field :name %>
Mailing Address<br />
<%= f.text_field :address %>
<%= f.label :live %><br />
<%= f.check_box :live %>
<%= f.submit 'Update' %>
<% end %>
编辑:
entries_controller.rb更新方法:
def update
@entry = Entry.find(params[:id])
respond_to do |format|
if @entry.update_attributes(params[:entry])
flash[:notice] = 'Entry was updated.'
format.html { redirect_to(@entry) }
else
format.html { render :action => "edit" }
end
end
end
entry.rb:
class Entry < ActiveRecord::Base
acts_as_mappable
acts_as_taggable_on :tags
validates_presence_of :name, :tag_list
validates_length_of :name, :maximum => 64
validates_length_of :tag_list, :maximum => 128, :allow_blank => false
validates_length_of :paddress, :maximum => 128, :allow_blank => true
validates_length_of :address, :maximum => 128, :allow_blank => true
validates_length_of :tollfreephone, :in => 7..32, :allow_blank => true
validates_length_of :phone, :in => 7..32, :allow_blank => true
validates_length_of :phone2, :in => 7..32, :allow_blank => true
validates_length_of :mobile, :in => 7..32, :allow_blank => true
validates_length_of :fax, :in => 7..32, :allow_blank => true
validates_length_of :email, :in => 7..48, :allow_blank => true
validates_format_of :email,
:with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i,
:on => :create, :allow_blank => true
validates_length_of :website, :maximum => 64, :allow_blank => true
validates_length_of :description, :maximum => 1024, :allow_blank => true
attr_accessible :name, :tag_list, :paddress, :address, :tollfreephone,
:phone, :phone2, :mobile, :fax, :email, :website,
:description
validate :required_info
before_save :geocode_paddress
searchable_on :name, :address, :phone, :phone2, :mobile, :fax, :email,
:website, :category, :description
private
def required_info
if( phone.empty? and phone2.empty? and tollfreephone.empty? and
mobile.empty? and fax.empty? and email.empty? and
website.empty?
)
errors.add_to_base "Please have at least one form of contact information."
end
end
def geocode_paddress
# if paddress is nil or empty set the old values to nil and return
((self.lat = self.lng = nil); return true) if paddress.empty?
g=Geokit::Geocoders::MultiGeocoder.geocode(paddress)
(errors.add(:paddress,"Could not Geocode address");
return false) unless g.success
self.lat, self.lng = g.lat, g.lng
end
end
为什么管理员无法从编辑视图更新:live复选框?
我非常感谢任何建议。我是铁杆新手。如果需要,我可以发布更多代码。感谢您阅读我的问题。
答案 0 :(得分:2)
您正在进行attr_accessible来电
attr_accessible :name, :tag_list, :paddress, :address, :tollfreephone,
:phone, :phone2, :mobile, :fax, :email, :website,
:description
这很棒,因为它会避免用户更新除您允许的字段之外的其他字段
但是你的live
字段不在那里。
所以它的值被rails过滤,因为用户不允许更新该字段。将其添加到attr_accessible调用的字段中,您就可以对其进行编辑。