Rails表单:保存第一个表单,然后使用第一个表单的参数重定向到第二个或第三个表单

时间:2014-05-22 12:38:19

标签: ruby-on-rails forms

我是rails的新手,我正在尝试分两部分创建一个表单。首先,填写用户表单。然后你选择成为一个prestataire或employeeur。通过单击相应的按钮,将保存用户表单,您将被重定向到prestataire的表单或最近创建的用户参数的雇员表。

到目前为止,我没有设法发送最近创建的用户参数,只保存和重定向。但是我在prestataire_controller中得到了这个错误,因为prestataire属于用户。当我点击使用按钮时,错误类似:

def new
    @user = User.find(params[:user_id]) #This is where there's an error. 
    @prestataire = @user.build_prestataire
  end

这是我到目前为止编写的代码:

用户表格:

<%= form_for(@user) do |f| %>
  <% if @user.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@user.errors.count, "error") %> prohibited this user from being saved:</h2>

      <ul>
      <% @user.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :civility, 'Titre de civilité: ' %><br>
    <%= f.text_field :civility %>
  </div>

  <div class="field">
    <%= f.label :forename, 'Prénom: ' %><br>
    <%= f.text_field :forename %>
  </div>
  <div class="field">
    <%= f.label :surname, 'Nom de famille: ' %><br>
    <%= f.text_field :surname %>
  </div>
  <div class="field">
    <%= f.label :email, 'Email: ' %><br>
    <%= f.text_field :email %>
  </div>
  <div class="field">
    <%= f.label :password, 'Mot de passe: ' %><br>
    <%= f.password_field :password, size: 40 %>
  </div>
  <div class="field">
    <%= f.label :password_confirmation, 'Confirmation de mot de passe: ' %><br>
    <%= f.password_field :password_confirmation, size: 40 %>
  </div>
  <div class="field">
    <%= f.label :phone, 'Numéro de téléphone: ' %><br>
    <%= f.text_field :phone %>
  </div>
  <div class="actions">
    <%= f.submit 'Employeur', name: 'employeur' %>
    <%= f.submit 'Prestataire', name: 'user_id' %>
  </div>
<% end %>

用户控制器:

  def create
    @user = User.new(user_params)

    respond_to do |format|
      if @user.save
        if params[:commit] == 'employeur'
        format.html { redirect_to new_employeur_path, notice: "Renseignez vos informations d'employeur" }
        format.json { render action: 'show', status: :created, location: @user }
        else 
        format.html { redirect_to new_prestataire_path, notice: "Renseignez vos informations de prestataire" }
        format.json { render action: 'show', status: :created, location: @user }
        end
      else
        format.html { render action: 'new' }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /users/1
  # PATCH/PUT /users/1.json
  def update
    respond_to do |format|
      if @user.update(user_params)
        format.html { redirect_to new_employeur_path, notice: 'User was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: 'edit' }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end

private
  def user_params
        params.require(:user).permit(:email, :password, :password_confirmation, :surname, :forename, :civility, :phone, :employeur)
  end

用户模型:

class User < ActiveRecord::Base
  has_one :prestataire
  has_one :employeur
  validates :email, presence: true, uniqueness: true
  validates :password, :forename, :surname, :phone, :civility, presence: true
  validates :password, confirmation: true
  has_secure_password
end

Prestataire模型:

class Prestataire < ActiveRecord::Base
  belongs_to :user
  has_many :projets, as: :projetable
  has_many :employeurs, through: :projets
  has_many :offres, through: :projets
  has_many :feedbacks, through: :projets
  validates :siren, presence: true, uniqueness: true
  validates_associated :users
end

路由文件:

Workplace::Application.routes.draw do
  resources :users
  resources :prestataires
  resources :employeurs
  resources :projets
  resources :feedbacks
  resources :offres
  root 'projets#index'

我正在考虑在f.submit上添加 onclik 选项并添加适当的方法。但我在某处读到f.submit不是这种请求的最佳选择,但没有提出其他建议。在此先感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

我认为Prestatair应该嵌套在User下。但您的路线文件尚未进行任何嵌套。我建议如此嵌套路线:

resources :users do
  resources :prestataires
  resources :employeurs
end

执行此操作后,@user = User.find(params[:user_id])应该有效......但您可能还会看到其他问题,您必须解决这些问题。该行现在可以工作的原因在于,现在您将在params哈希中存在params[:user_id],这是由嵌套的:users路由提供的。更多......

使用bundle exec rake routes查看上述嵌套创建的路由和named_route名称,并相应地更新代码。