最初の画面
で。この対応策として、sample_controller.rbに次の一行(赤字のやつ)を書き足した。
====================================
#coding:utf-8
class SampleController < ApplicationController
skip_before_filter :verify_authenticity_token ,:only=>[:index2]
def index2
if request.post? then
@msg = "you type: " + params[:text1]
else
@msg="なにか入力してください。"
end
end
end
====================================
で、再度実行してみると、無事にこちらの画面が出現。
「Herokuではじめる Railsプログラミング入門」のミスでもなんでもなくて、もともとRuby1.9.3とRails3の組み合わせで書かれているので問題が出ないのかもしれません。
0 件のコメント:
コメントを投稿