Railsを使用して簡単なマイクロポストアプリケーションを作成しようとしています...
これは私のモデルです:
Class Micropost < ActiveRecord::Base
attr_accessible :content, :name
end
コントローラ:
class MicropostsController < ApplicationController
def create
@blog=Micropost.new( :content => params[:content])
@blog.save
redirect_to microposts_show_path
end
def show
@mblg=Micropost
end
def index
end
end
ビュー:
create.html.erb
<h1>Microblogs#create</h1>
<p></p>
<%= label_tag(:content) %><br/>
<%= text_field_tag (:content) %><br/>
<%= submit_tag("submit") %><br/>
index.html.erb
<h1>Microblogs#index</h1>
<p>Find me in app/views/microblogs/index.html.erb</p>
show.html.erb
<h1>Microblogs#show</h1>
<p></p>
<%= @mblg.each.do |variable|%>
<p><%= variable.content %></p>
<%end%>
Routes.rb
Blog::Application.routes.draw do
get "microposts/create"
get "microposts/show"
get "microposts/index"
end
テンプレートが見つからないというエラーが表示されます...これはかなり単純なアプリケーションです...どこが間違っているのか指摘していただけますか?