我正在用 Ruby on Rails 作为学校项目制作游戏,但现在我遇到了这个错误:
#<#:0x007ff34cca8f68> 的未定义方法“storylines_index_path”
我正在制作一个页面,您希望有一个表格来添加故事情节,所以我需要一个包含一些字段的表格。我想使用 form_for 方法。但是当添加我得到这个错误
这是我的代码:
意见/new.html.erb
<% provide(:title, 'Overzicht Storylines') %>
<h1>Voeg nieuwe storyline toe</h1>
<%= form_for(@storyline) do |f| %>
<%= render 'shared/error_messages' %>
<%= f.label :title %>
<%= f.text_field :title%>
<%= f.submit "Create my account", class: "btn btn-large btn-primary" %>
<% end %>
storylines_controller.rb
class StorylinesController < ApplicationController def index
@storylines = Storylines.find(:all) end
def show
@storyline = Storylines.find(params[:id])
end
def new
@storyline = Storylines.new end end
故事情节.rb
class Storylines < ActiveRecord::Base
attr_accessible :title, :text
end
路线.rb
StoryLine::Application.routes.draw do
get "users/new"
get "storylines/new"
resources :users
resources :storylines
resources :sessions, only: [:new, :create, :destroy]
match '/signup', to: 'users#new'
match '/signin', to: 'sessions#new'
match '/signout', to: 'sessions#destroy', via: :delete
root to: 'static_pages#home'
match '/help', to: 'static_pages#help'
match '/contact', to: 'static_pages#contact'
match '/about', to: 'static_pages#contact'
match '/home', to: 'static_pages#home'
end