我正在尝试在 Volt 的控制器上运行一些代码,但仅限于某些页面。我查看了文档,但我不确定如何访问给定页面的 URL。模型中是否可能存在一些隐藏变量或其他东西page
,像这样?:
module Main
class MyController < Volt::ModelController
model :page
def index
end
def template_page
if page.url == "/foo/bar" # obviously, this doesn't actually work
# run some code
end
end
end
end