basyura's blog

あしたになったらほんきだす。

2010-04-26から1日間の記事一覧

ルーティングのお勉強

class UsersController < ApplicationController def show @user = User.find_by_user_id(params[:user_id]) end end Money::Application.routes.draw do |map| match 'user/:user_id' , :to => 'users#show' #=> http://localhost:3000/user/basyura match …