Ruby on Rails - HTML 链接



下面是 link_to、mail_to 的快速视图。请查看以下链接了解更多详情 - URL 帮助程序

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 "[email protected]", "send mail", :subject => 
   "Support request by #{@user.name}", :cc => @user.email, 
   :body => '....', :encoding => "javascript"

stylesheet_link_tag "scaffold", "admin", :media => "all"
rails-references-guide.htm
广告