试图关注一本书,但没有生成我的表格,这是为什么呢?这是我的 new.html.erb
<h1>New ad</h1>
<% form_for :ad,:url=>{:action=>'create'} do |f| %>
<p><b>Name</b><br /><%= f.text_field :name %></p>
<p><b>Description</b><br /><%= f.text_area :description %></p>
<p><b>Price</b><br /><%= f.text_field :price %></p>
<p><b>Seller</b><br /><%= f.text_field :seller_id %></p>
<p><b>Email</b><br /><%= f.text_field :email %></p>
<p><b>Img url</b><br /><%= f.text_field :img_url %></p>
<p><%= f.submit "Create" %></p>
<% end %>
这是我的 ads_controller
class AdsController < ApplicationController
def show
@ad = Ad.find(params[:id])
end
def stats
@seller = Seller.find(params[:id])
end
def index
@ads = Ad.find(:all)
end
def new
@ad = Ad.new
end
end
我的路线是
resources :ads
这就是我得到的全部