メインのウェルカム ページ (HighVoltage gem を使用して作成しました)、ユーザーが新しいグループを作成できるグループ フォームでパーシャルをレンダリングしようとしています...
私がこれまでに試したことは、私に次のエラーを与えます...
フォームの最初の引数に nil を含めたり、空にすることはできません
= form_for @group do |f|
.fieldset
- if @group.errors.any?
.error_messages
私のルートはこのように構成されています
Giraffle::Application.routes.draw do
get 'sign_up', to: 'groups#new', as: 'sign_up'
get 'sign_in', to: 'sessions#new', as: 'sign_in'
delete 'sign_out', to: 'sessions#destroy', as: 'sign_out'
resources :sessions
resources :members
resources :groups
resources :events
resources :event_sets
root :to => 'high_voltage/pages#show', id: 'welcome'
end
そのため、メインページを読み込もうとすると、ウェルカムページに直接移動し、上記のエラーでクラッシュします
私は問題が何であるかを知っていると思います...しかし、私はそれを解決する方法を知りません。フォームをレンダリングしようとしていますが、「グループ」バイアブルが初期化されないため、このエラーがスローされます。
私のコード...
ビュー/ページ/welcome.html.slim
row id="div"
.small-4 id="innerDiv"
.row
.small-4.columns align="center"
img src="groupIcon.png" id="mainImg"
.large-6.large-offset-2.columns
h1 Sign Up
= render :partial => '/groups/form'
ビュー/グループ/_form.html.slim
= form_for @group do |f|
.fieldset
- if @group.errors.any?
.error_messages
h2 Form is invalid
ul
- @group.errors.full_messages.each do |message|
li= message
.row
.small-12.columns
= f.text_field :name, placeholder: "Name"
.row
.small-12.columns
= f.text_field :group_id, placeholder: "Group"
.row
.small-12.columns
= f.password_field :password, placeholder: "Password"
.row
.small-12.columns
= f.password_field :password_confirmation, placeholder: "Confirm Password"
.row
.small-3.columns
.actions= f.submit 'Sign Up', class: 'button radius'
編集
コントローラー/groups_controller.rb
class GroupsController < ApplicationController
load_and_authorize_resource
before_action :set_group, only: [:edit, :update, :destroy]
before_action :authorize, except: [:new, :create]
def new
@group = Group.new
end
def edit
end
def create
@group = Group.new(group_params)
if @group.save
redirect_to root_url, notice: 'Signed Up!'
else
render 'new'
end
end
def update
if @group.update(group_params)
redirect_to root_url, notice: 'Group Info was successfully updated.'
else
render action: 'edit'
end
end
private
def set_group
@group = Group.find(params[:id])
end
def group_params
params.require(:group).permit(:group_id, :name, :password, :password_confirmation)
end
end