我想做的是链接到Rails中的静态页面。
该页面是在sample.com/path1/path2/page.html.erb
如何链接到page.html.erb
?
答案 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