繁体   English   中英

Ruby on Rails 参数数量错误(假设为 0,预期为 1)

[英]Ruby on Rails Wrong Number of arguments (given 0 expected 1)

你好,我正在尝试使用 Ruby on Rails 模型创建一个新记录,但是我收到了一个错误的参数错误。

错误信息:

在此处输入图片说明

配置/路由.rb

Rails.application.routes.draw do

mount RailsAdmin::Engine => '/admin', as: 'rails_admin' devise_for :modifications devise_for :users resources :user_steps resources :divorce_steps resources :divorces

root 'nav_pages#home'
get '/home', to:'nav_pages#home'
get '/wwd', to:'nav_pages#wwd'
get '/about', to:'nav_pages#about'
get '/contact', to:'nav_pages#contact'
get '/blog', to:'nav_pages#blog'
get '/are_you_married', to: 'qualifier#are_you_married'
get '/want_a_divorce', to: 'qualifier#want_a_divorce'

结尾

离婚_controller.rb:

class DivorcesController < ApplicationController

def new @divorce = Divorce.new end

def create @divorce = Divorce.new(user_params) @divorce.save end

私人的

def user_params
  params.require.(:divorce).permit(:marriage_date, :seperation_date, :state_of_mariage, :child_support, :address, :childrens_address, :contact_with_other, :telephone)
end

结尾

新的.html.erb

<div class = "container top-cont">
让我们开始约会吧!

<%= form_with(model: @divorce, local: true) do |f| %>

 <%= f.label :marriage_date %> <%= f.text_field :marriage_date, class: 'form-control' %> <%= f.label :seperation_date %> <%= f.text_field :seperation_date, class: 'form-control' %> <%= f.label :state_of_marriage %> <%= f.text_field :state_of_marriage, class: 'form-control' %> <%= f.label :child_support%> <%= f.text_field :child_support, class: 'form-control' %> <%= f.label :child_support %> <%= f.text_field :child_support, class: 'form-control' %> <%= f.label :address %> <%= f.text_field :address, class: 'form-control' %> <%= f.label :childrens_address %> <%= f.text_field :childrens_address, class: 'form-control' %> <%= f.label :contact_with_other %> <%= f.text_field :contact_with_other, class: 'form-control' %> <%= f.label :telephone %> <%= f.text_field :telephone, class: 'form-control' %> <%= f.submit "Create my account", class: "btn btn-primary" %> <% end %>

非常感谢您的任何帮助!

问题在于divorces_controller.rb

它应该是params.require(:divorce) ,而不是params.require.(:divorce)

尝试:

params.require(:divorce)

实际上强参数使用语法:

params.require(:modal) 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM