gpt4 book ai didi

ruby-on-rails - # 的未定义方法 `layout'

转载 作者:太空宇宙 更新时间:2023-11-03 17:57:58 25 4
gpt4 key购买 nike

我希望我的欢迎 Controller 使用不同的布局:

class WelcomeController < ApplicationController

def index
if signed_in?
layout 'default'
else
layout 'welcome'
end
render 'welcome/index'
end

end

最佳答案

class WelcomeController < ApplicationController

def index
if signed_in?
render :layout => 'default'
else
render :layout => 'welcome'
end
end

end

关于ruby-on-rails - #<WelcomeController :0x00000006ab2df8> 的未定义方法 `layout',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10143746/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com