Как добавить элемент в json объект ruby ​​на рельсах? - PullRequest
0 голосов
/ 06 ноября 2018

Я хочу объединить элементы из 2 таблиц. Там вывод:

 "costs":[  
  {  
     "id":2,
     "cost_name":"rent office",
     "user_id":2,
     "fix":true,
     "amount":300300,
     "created_at":"2018-11-05T18:36:19.108+06:00",
     "updated_at":"2018-11-05T18:36:19.108+06:00"
  },
  {  
     "id":3,
     "cost_name":"new computer",
     "user_id":2,
     "fix":false,
     "amount":350000,
     "created_at":"2018-11-06T14:44:49.805+06:00",
     "updated_at":"2018-11-06T14:44:49.805+06:00"
  }


 ],
   "users":[  
      [  
         "Vi_Ok",
         2
      ]
   ]
}

Я хочу добавить параметр пользователей (имя пользователя, которое "Vi_Ok") добавить к каждой стоимости. Как вы заметили, в обеих таблицах существует userId. Теперь код выглядит так:

def index
@costs = Cost.all 
@user_name = @costs.pluck(:user_id)
@user_name = User.find(@user_name).pluck(:name, :id)
# @costs.push("name" => @user_name.pluck(:name) this one just try to add 
render json: {costs: @costs, name: @user_name}

конец

Ответы [ 2 ]

0 голосов
/ 06 ноября 2018

Вы можете написать собственный метод в своей модели и вызвать его в индексном действии, которое возвращает все затраты с именем пользователя, как показано ниже:

def self.list_costs
  cost_list = []
  costs = Cost.all
  costs.each do |cost|
    cost_info = cost.attributes
    cost_info[:user_name] = cost.user.name
    cost_list << cost_info
  end
  cost_list
end  

class CostsController < ApplicationController
  def index
    render json: {costs: Cost.cost_list }
  end
end
0 голосов
/ 06 ноября 2018

Предположим, что пользователь имеет_много расходы,

Что вы предоставили,

hash =  {"costs"=>[{"id"=>2, "cost_name"=>"rent office", "user_id"=>2, "fix"=>true, "amount"=>300300, "created_at"=>"2018-11-05T18:36:19.108+06:00", "updated_at"=>"2018-11-05T18:36:19.108+06:00"}, {"id"=>3, "cost_name"=>"new computer", "user_id"=>2, "fix"=>false, "amount"=>350000, "created_at"=>"2018-11-06T14:44:49.805+06:00", "updated_at"=>"2018-11-06T14:44:49.805+06:00"}], "users"=>[["Vi_Ok", 2]]}

Приступить

costs, users = hash['costs'], hash['users']
costs.each { |c| c['user_name'] = users.detect { |u| u[1] == c['user_id'] }[0] }

Выше будет добавлено user_name в каждый хэш стоимости.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...