Rails:如何链接到静态页面

时间:2018-12-23 01:06:19

标签: ruby-on-rails ruby-on-rails-4

我想做的是链接到Rails中的静态页面。

该页面是在sample.com/path1/path2/page.html.erb

中创建的

如何链接到page.html.erb

1 个答案:

答案 0 :(得分:1)

在您的route.rb中,您应该有类似

的内容
------------------------------------------------------------
Gradle 4.4.1
------------------------------------------------------------

Build time:   2012-12-21 00:00:00 UTC
Revision:     none

Groovy:       2.4.15
Ant:          Apache Ant(TM) version 1.10.5 compiled on August 27 2018
JVM:          11.0.1 (Oracle Corporation 11.0.1+13-Ubuntu-2ubuntu1)
OS:           Linux 4.18.0-13-generic amd64

其中path是页面文件所在的文件夹

例如

get '/page', to: 'path#page', as: :page

然后您将链接

get '/page', to: 'layout#page', as: :page