11/01/11 23:52:59
>>175
すみません
エラーメッセージは以下です。
invalid byte sequence in UTF-8
activesupport (3.0.3) lib/active_support/core_ext/object/blank.rb:68:in `=~'
rails new test
でアプリ作成後、
application_controller.rb
class ApplicationController < ActionController::Base
protect_from_forgery
def index
warn params[:key].force_encoding("UTF-8").blank?
end
end
root.rb
root :to=>"application#index"
を記述し、
URLリンク(127.0.0.1:3000)
で再現します。