标签: ruby-on-rails
我在布局中有一个FooController和一个foo.html.erb。
FooController
foo.html.erb
所以我希望当我进入localhost:3000/foo/some_action时,会看到 foo布局。
localhost:3000/foo/some_action
但事实并非如此。我得到一个空白页面。仅当我将def index放在控制器中并且index.html.erb会呈现布局时。
def index
index.html.erb
为什么在Rails中会出现这种情况?
答案 0 :(得分:1)
布局用于环绕视图(或其他呈现的内容);没有任何包装,因此该布局无用。