我在Rails中遇到一个表单有点麻烦。 (我是Rails的新手)
提交表格后我得到的是:
--- !ruby/hash:ActionController::Parameters
utf8: "✓"
name: Jim
email: Jim@jim.com
subject: hello
message: goodbye
controller: contacts
action: create
应该是这样的:
contact:
name: Jim
email: Jim@jim.com
subject: hello
message: goodbye
我不知道我在这里做错了什么。这是表单(减去所有bootstrap div和spans):
视图/联系人/ new.html.erb
<%= form_for(@contact, url: contact_path) do |f| %>
<%= f.text_field :name, name: "name", value: nil, class: 'form-control', placeholder: 'Enter full name' %>
<%= f.email_field :email, name: "email", class: 'form-control', placeholder: 'Enter email address' %>
<%= f.text_field :subject, name: "subject", class: 'form-control',
placeholder: 'Enter subject' %>
<%= f.text_area :message, name:"message", class: 'form-control', rows: 6, placeholder: 'Enter your message for us here.' %>
<%= f.submit :submit, class: 'btn btn-default pull-right' %>
<% end %>
配置/ routes.rb中
get 'contact' => 'contacts#new'
post 'contact' => 'contacts#create'
控制器/ contacts_controller.rb
class ContactsController < ApplicationController
def new
@contact = Contact.new
end
def create
@contact = Contact.new(params[:contact]) #<-- always fails because no :contact
if @contact.valid?
if @contact.send_mail
# todo
else
# todo
end
else
flash.now[:error] = params.inspect
render 'new'
end
end
end
模型/ contact.rb
class Contact
include ActiveAttr::Model
attribute :name
attribute :email
attribute :subject
attribute :message
validates_presence_of :name
validates_format_of :email, with: /\A([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})\z/i
validates_presence_of :subject
validates_presence_of :message
def send_mail
ContactMailer.form_message(self).deliver_now
end
end
我尝试过使用form_for(:contact),使用资源进行路由,更改模型以使用mail_form gem,但仍然没有运气。当然,我可以通过执行params [:name]等来获取所有值。但是我不知道是不是创建了包含所有表单输入值的单个哈希。有谁知道为什么会这样?提前致谢。
答案 0 :(得分:0)
删除name: '...'
选项,因为帮助者已经设置了名称,而不是您正在设置的名称。在您的情况下,rails会希望这些字段的名称类似于contact[name]
和contact[email]
,而不是您设置的字段。