2

我是 Rails 新手,我在 Simple_Form、Devise 和复选框方面遇到了一些问题。

我在我的设计模型中添加了一些额外的列,包括我希望用户勾选一个或多个复选框的列。与此类似:

经营地区: [ ] 英格兰 [ ] 威尔士 [ ] 苏格兰

一切都很好,但是当我选择多个区域然后保存时,选择不会保存到数据库中。


这是我的查看代码[app/views/devise/registrations/edit.html.erb]:

<%= simple_form_for(resource, html: { class: 'form-horizontal'}, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>

<%= f.input :areas, :as => :check_boxes, :collection => ["England", "Wales", "Scotland", "Northern Ireland"] %>

<% end %>

这是我的ApplicationController 代码[app/controllers/application_controller.rb]:

class ApplicationController < ActionController::Base
protect_from_forgery with: :exception

before_filter :configure_permitted_parameters, if: :devise_controller?

protected

 def configure_permitted_parameters
  devise_parameter_sanitizer.for(:sign_up) << :areas
  devise_parameter_sanitizer.for(:account_update) << :areas
 end
end

我确定我遗漏了一些明显的东西,但是我已经在谷歌上搜索了几个小时而没有运气。

任何帮助将不胜感激!


编辑:

道歉。这是设计(实际上命名为“提供者”)表的方案:

create_table "providers", force: true do |t|
  t.string   "email",                  default: "", null: false
  t.string   "encrypted_password",     default: "", null: false
  t.string   "reset_password_token"
  t.datetime "reset_password_sent_at"
  t.datetime "remember_created_at"
  t.integer  "sign_in_count",          default: 0,  null: false
  t.datetime "current_sign_in_at"
  t.datetime "last_sign_in_at"
  t.string   "current_sign_in_ip"
  t.string   "last_sign_in_ip"
  t.datetime "created_at"
  t.datetime "updated_at"
  t.string   "first_name"
  t.string   "last_name"
  t.string   "organisation"
  t.string   "street"
  t.string   "city"
  t.string   "county"
  t.string   "postcode"
  t.string   "areas"
  t.string   "methods"
end

add_index "providers", ["email"], name: "index_providers_on_email", unique: true
add_index "providers", ["reset_password_token"], name: "index_providers_on_reset_password_token", unique: true
4

1 回答 1

1

有很多方法可以节省区域,

1)最好的方法是创建一个名为 area 的新模型,并与用户建立多对多的关联。 检查。这是用户有许多项目关联的基本应用程序。

2)如果您不想创建单独的区域模型,那么您可以将区域存储在列用户之一中。您可以序列化列。在这里,您可以以 arr 或哈希形式存储数据

3)在用户过滤器之前和保存用户之前添加,加入区域并将其保存为字符串。

于 2014-09-15T07:53:21.930 回答