2010-10-09から1日間の記事一覧

Rails3のpath_parameters

Rails2.3.8 class TestController < ApplicationController def index Rails.logger.info(request.path_parameters[:action]) => "index" Rails.logger.info(request.path_parameters["action"]) => "index" Rails.logger.info(request.symbolized_path_para…