要让按钮链接到Rails中的另一个HTML页面,可以按照以下步骤进行操作:
render
方法来指定要渲染的HTML页面。link_to
)创建一个按钮,并将按钮的链接指向刚刚创建的控制器动作。以下是一个示例:
pages
的控制器:rails generate controller pages
pages
控制器中创建一个名为another_page
的动作:def another_page
# 处理按钮点击事件的逻辑
render 'another_page' # 渲染名为another_page.html.erb的视图文件
end
app/views/pages
目录下创建一个名为another_page.html.erb
的视图文件,并编写相应的HTML内容。link_to
方法创建一个按钮,并将其链接指向pages
控制器的another_page
动作:<%= link_to '跳转到另一个页面', pages_another_page_path %>
这样,当用户点击按钮时,将会触发pages
控制器的another_page
动作,并渲染another_page.html.erb
视图文件。
请注意,以上示例中的代码是基于Rails框架的,如果你使用的是其他框架或编程语言,具体的实现方式可能会有所不同。
领取专属 10元无门槛券
手把手带您无忧上云