作为一个Ruby新手,我仍然在掌握这门语言。我已经为一个已经在生产中使用的简单数据库创建了一个广播控制器。但是,我收到了上述错误。以下是我使用的代码:
show.html.erb
<p id="notice"><%= notice %></p>
<%= link_to 'Edit', edit_broadcast_path(@broadcast) %> |
<%= link_to 'Back', broadcasts_path %>
Index.html.erb index.html.erb
broadcasts_controller.rb boradcast controller
帮助控制器
class HelpController < ApplicationController
skip_before_action :authenticate_user!
def about
#render text: "Hello"
end
端
我不确定我是否遗漏了任何文件或配置,如果需要,我会在评论中添加它们。感谢