Ruby-on-rails-2.1-rails-html-links
提供:Dev Guides
Ruby on Rails 2.1-HTMLリンク
以下は、link_toおよびmail_toのクイックビューです。
以下は、link_toおよびmail_toのクイックビューです。
link_to "Name", :controller => 'post',
:action => 'show',
:id => @post.id
link_to "Delete", { :controller => "admin",
:action => "delete",
:id => @post },
{ :class => 'css-class',
:id => 'css-id',
:confirm => "Are you sure?" }
image_tag "spinner.png", :class => "image", :alt => "Spinner"
mail_to "info@invisible.ch", "send mail",
:subject => "Support request by #{@user.name}",
:cc => @user.email,
:body => '....',
:encoding => "javascript"
stylesheet_link_tag "scaffold", "admin", :media => "all"