简体   繁体   English

如何保存记录有很多关联

[英]how to save a record in has many association in rails

I am working on a rails application, According to the requirement, I have to implement A team to which should add players, player has team id and user id. 我正在开发Rails应用程序,根据要求,我必须实现一个应该添加玩家的团队,该玩家具有团队ID和用户ID。 if I save user_id and team_id in players it is meant that one player is added to a particular team. 如果我将user_id和team_id保存在玩家中,则意味着将一个玩家添加到特定团队中。 I have user,team,player models. 我有用户,团队,玩家模型。 team has many players. 团队有很多球员。 player model contains user_id and team id. 玩家模型包含user_id和团队ID。 I am confused how to save records while adding players to team. 我很困惑如何在将队员添加到团队时保存记录。 I tried as 我尝试了

follows and added log as well. 并添加了日志。

//playercontoller:
     class PlayersController < ApplicationController
            def new
                @player= Player.new
                @team = Team.find(params[:team_id])
                @user=User.all
            end
            def create
                @team = Team.find(params[:player][:team_id])
                params[:players][:user_id].each do |user_id|
                @team.players.create(user_id: user_id)
                end
            end

    private

      def player_params
        params.require(:player).permit( :team_id,players[:user_id][]
                                     )
      end

    end

//new.html.erb //new.html.erb

<div class="col-md-6 col-md-offset-3">
  <div class="container">
    <br>
    <h3>Add players to team <%= @team.team_name %></h3>
      <%= form_for @player do |f| %>
      <table>
        <tbody>
          <%= f.hidden_field :team_id, value: @team.id %>
          <tr>
            <th>Player Id</th>
            <th>Player Name</th>
            <th>Select</th>
          </tr>  
          <% @user.each do |x| %>
            <tr>
              <td><%= x.id %></td>
              <td><%= x.full_name %></td>
              <td><%= check_box_tag "players[:user_id][]",x.id %></td>
           </tr>
        <% end %>
        <tr>   
          <td>   
            <%= f.submit nil, class: 'btn btn-primary' %>
            <%= link_to t('.cancel', default:t("helpers.links.cancel")),
                root_path, class:'btn btn-default' %> 
           </td> 
          </tr>
        </tbody>
      </table> 
    <% end %>
  </div>
</div>
<%= will_paginate @user,renderer: BootstrapPagination::Rails,previous_label:"old",next_label: "new",inner_window:1,outer_window:1 %>             

log: 日志:

     Started GET "/" for 127.0.0.1 at 2019-02-27 10:06:36 +0530
       (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
      ↳ /home/sushmitha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.2/lib/active_record/log_subscriber.rb:98
    Processing by HomeController#home as HTML
      Rendering home/home.html.erb within layouts/application
      User Load (0.5ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?  [["id", 1], ["LIMIT", 1]]
      ↳ app/views/home/home.html.erb:3
       (0.2ms)  SELECT "roles"."name" FROM "roles" INNER JOIN "user_roles" ON "roles"."id" = "user_roles"."role_id" WHERE "user_roles"."user_id" = ?  [["user_id", 1]]
      ↳ app/models/user.rb:31
      Rendered home/home.html.erb within layouts/application (50.1ms)
      Rendered layouts/_header.html.erb (0.8ms)
      Rendered layouts/_footer.html.erb (0.3ms)
    Completed 200 OK in 328ms (Views: 310.2ms | ActiveRecord: 4.3ms)


    Started GET "/teams/1" for 127.0.0.1 at 2019-02-27 10:06:39 +0530
    Processing by TeamsController#show as HTML
      Parameters: {"id"=>"1"}
      User Load (0.4ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?  [["id", 1], ["LIMIT", 1]]
      ↳ /home/sushmitha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.2/lib/active_record/log_subscriber.rb:98
      Rendering teams/show.html.erb within layouts/application
      Team Load (0.4ms)  SELECT "teams".* FROM "teams"
      ↳ app/views/teams/show.html.erb:3
      User Load (0.5ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
      ↳ app/views/teams/show.html.erb:7
      User Load (0.3ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
      ↳ app/views/teams/show.html.erb:7
      User Load (0.3ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
      ↳ app/views/teams/show.html.erb:7
      User Load (0.1ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
      ↳ app/views/teams/show.html.erb:7
      User Load (0.1ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
      ↳ app/views/teams/show.html.erb:7
      User Load (0.2ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
      ↳ app/views/teams/show.html.erb:7
      Rendered teams/show.html.erb within layouts/application (33.7ms)
      Rendered layouts/_header.html.erb (0.9ms)
      Rendered layouts/_footer.html.erb (0.3ms)
    Completed 200 OK in 88ms (Views: 74.4ms | ActiveRecord: 3.7ms)


    Started GET "/players/new?team_id=11" for 127.0.0.1 at 2019-02-27 10:06:41 +0530
    Processing by PlayersController#new as HTML
      Parameters: {"team_id"=>"11"}
      User Load (0.4ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?  [["id", 1], ["LIMIT", 1]]
      ↳ /home/sushmitha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.2/lib/active_record/log_subscriber.rb:98
      Team Load (0.5ms)  SELECT  "teams".* FROM "teams" WHERE "teams"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
      ↳ app/controllers/players_controller.rb:4
      Rendering players/new.html.erb within layouts/application
      User Load (0.4ms)  SELECT  "users".* FROM "users" LIMIT ? OFFSET ?  [["LIMIT", 2], ["OFFSET", 0]]
      ↳ app/views/players/new.html.erb:15
       (0.2ms)  SELECT COUNT(*) FROM "users"
      ↳ app/views/players/new.html.erb:34
    /home/sushmitha/.rvm/gems/ruby-2.5.1/gems/will_paginate-bootstrap-1.0.1/lib/bootstrap_pagination/bootstrap_renderer.rb:11: warning: constant ::Fixnum is deprecated
      Rendered players/new.html.erb within layouts/application (35.9ms)
      Rendered layouts/_header.html.erb (0.9ms)
      Rendered layouts/_footer.html.erb (0.3ms)
    Completed 200 OK in 106ms (Views: 83.2ms | ActiveRecord: 2.7ms)


    Started POST "/players" for 127.0.0.1 at 2019-02-27 10:06:51 +0530
    Processing by PlayersController#create as HTML
      Parameters: {"utf8"=>"✓", "authenticity_token"=>"POfJTTsLKDZftZF1J4Rlj0Fc6Z5MxFM3gEhOTc4dv7m4neSK4oo4FTn+pSpuo09bEkAxPYu2ajqDsru/4fJgag==", "player"=>{"team_id"=>"11"}, "players"=>{":user_id"=>["1"]}, "commit"=>"Create Player"}
      User Load (0.5ms)  SELECT  "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?  [["id", 1], ["LIMIT", 1]]
      ↳ /home/sushmitha/.rvm/gems/ruby-2.5.1/gems/activerecord-5.2.2/lib/active_record/log_subscriber.rb:98
      Team Load (0.2ms)  SELECT  "teams".* FROM "teams" WHERE "teams"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
      ↳ app/controllers/players_controller.rb:14
    Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.7ms)



    NoMethodError (undefined method `each' for nil:NilClass):

    app/controllers/players_controller.rb:15:in `create'

Without knowing the error, it's hard to fix the issue, but I don't think you need the [] before the .each . 在不知道错误的情况下,很难解决该问题,但是我认为您不需要.each之前的[] It should be: 它应该是:

@team = Team.find(params[:player][:team_id])
params[:players][:user_id].each do |user_id|
  @team.players.create(user_id: user_id)
end

It is good to indent your code correctly, it helps find errors and debug. 正确缩进代码是很好的选择,它有助于发现错误并进行调试。 Also, a form cannot be a child of a table unless it is within a th or td. 而且,除非在th或td内,否则表单不能是表的子级。 The browser will place the form before of the table, but the fields within it therefore making the table empty: 浏览器会将表格放在表格的前面,但是其中的字段使表格为空:

<div class="col-md-6 col-md-offset-3">
  <div class="container">
    <br>
    <h3>Add players to team <%= @team.team_name %></h3>
      <%= form_for @player do |f| %>
      <table>
        <tbody>
          <%= f.hidden_field :team_id, value: @team.id %>
          <tr>
            <th>Player Id</th>
            <th>Player Name</th>
            <th>Select</th>
          </tr>  
          <% @user.each do |x| %>
            <tr>
              <td><%= x.id %></td>
              <td><%= x.full_name %></td>
              <td><%= check_box_tag "players[user_id][]",x.id %></td>
           </tr>
        <% end %>
        <tr>   
          <td>   
            <%= f.submit nil, class: 'btn btn-primary' %>
            <%= link_to t('.cancel', default:t("helpers.links.cancel")),
                root_path, class:'btn btn-default' %> 
           </td> 
          </tr>
        </tbody>
      </table> 
    <% end %>
  </div>
</div>

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

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