未定义的方法`with_indifferent_access'用于#<array:

时间:2017-11-04 18:42:32

标签: ruby-on-rails ruby

=“”

我已经尝试了很多方法,但它不起作用。我在这个项目中,另一个具有相同代码的控制器,另一个使用has_many关系的区别,有问题的是has_one和belongs_to。我们来看看代码。

class Endereco < ActiveRecord::Base
 has_one :user
end

class User < ActiveRecord::Base
 belongs_to :endereco
 accepts_nested_attributes_for :endereco

控制器中的强参数:

class Backoffice::UsersController < BackofficeController

def create
 @user = User.new(params_user)
 respond_to do |format|  
  if @user.save!
    format.json { render json: @user, include: :endereco}
  else
    format.json { render json: @user.errors, status: :unprocessable_entity }
  end
 end
end



 def params_user
   params.require(:user).permit(:nome, 
        :email, 
        :password, 
        :password_confirmation, 
        :cpf, 
        :tel_fixo, 
        :tel_cel,
        endereco_attributes: [
          :rua,
          :bairro,
          :cidade,
          :uf,
          :cep,
          :referencia,
          :numero,
          :complemento          
          ])
  end 

当我通过POSTMAN发送此json时,我收到错误&gt; #Array的未定义方法`with_indifferent_access':在这一行

  

@user = User.new(params_user)

{   "user":{
    "nome" : "teste1", 
    "email" : "teste@tt.com", 
    "password": "123", 
    "password_confirmation": "123", 
    "cpf": "123321", 
    "tel_fixo": "123321", 
    "tel_cel": "asdsd",
    "endereco_attributes": [
        {
          "rua": "tt",
          "bairro": "tete",
          "cidade": "asdas",
          "uf":"asdasd",
          "cep": "12321",
          "referencia": "asdasd",
          "numero":"123",
          "complemento":"123" }
    ]
}}

有人给我一个灯吗?谢谢!

2 个答案:

答案 0 :(得分:6)

你在输入中使endereco_attributes成为一个数组,而不是一个对象(后来成为Ruby中的Hash)。由于它是一个单数(belongs_to)关联,Rails希望它是一个哈希,而不是一个哈希数组。数组没有方法with_indifferent_access,但Hash没有。

更改输入以匹配正确的结构,一切都应该正常。

答案 1 :(得分:3)

我的json错了......我和[]的关系不应该

 "endereco_attributes": [{... }]

正确

  "endereco_attributes": {... }

感谢。