我正在与Rails一起学习课程,而且我还尝试遵循“ Getting Started with Rails”中的指导, 但是无论我的应用程序什么都找不到我的模板文件。
app / controllers / welcome_controller.rb:
# frozen_string_literal: true
# The welcome controller.
class WelcomeController < ApplicationController
def index; end
end
app / views / welcome / index.html.erb:
<h1>Hello, Rails!</h1>
config / routes.rb:
# frozen_string_literal: true
Rails.application.routes.draw do
get 'welcome/index'
root 'welcome#index'
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
end
答案 0 :(得分:0)
删除此行将显示“欢迎/索引” 或者只是将其更改为 获取“ welcome / index”,以:“ welcome#index” 希望这能解决您的问题。
答案 1 :(得分:0)
我弄清楚了问题所在。我安装的驱动器名为“ HDD(Mint)”,将其更改为“ HDD-Mint”,现在可以正常使用了!