gpt4 book ai didi

ruby-on-rails - rails 主布局丢失

转载 作者:数据小太阳 更新时间:2023-10-29 08:33:11 25 4
gpt4 key购买 nike

我使用的是最新版本的 ruby​​ 和 ROR。我在 app/views/layouts/application.html.erb 文件 中放置了一些代码。让我们这样说:

<html>
<head><title>ABC</title></head>
<body>
<%= yield %>
</body>
</html>

我无法在我的主页(我有 atm 的唯一页面)中显示布局。主页也是一个 .html.erb 文件,它包含基本的 html 和 rails 命令。我已经为它创建了 Controller :

class HomeController < ActionController::Base
protect_from_forgery
def index
#nothing yet
end
end

可能是什么问题?

最佳答案

HomeController 继承自 ActionController::Base。让它继承自ApplicationController。这可能有帮助

改变

 class HomeController < ActionController::Base

 class HomeController < ApplicationController

关于ruby-on-rails - rails 主布局丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13005266/

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