2
我在rails中真的很新,我現在在做Cloud9的rails教程。Ruby on rails:在Heroku製作中不允許使用基本的hello world返回方法
我做了一個簡單的終端來測試我可愛的Hello World
在默認ApplicationController
。這是我的控制器:
的ApplicationController
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
def hello
render html: "hello, world"
end
end
但是當我部署在Heroku的項目,它返回method not allowed.
任何想法我做錯了什麼? 這是其他重要文件,我有
的Gemfile
source 'https://rubygems.org'
gem 'rails', '5.1.2'
gem 'puma', '3.9.1'
gem 'sass-rails', '5.0.6'
gem 'uglifier', '3.2.0'
gem 'coffee-rails', '4.2.2'
gem 'jquery-rails', '4.3.1'
gem 'turbolinks', '5.0.1'
gem 'jbuilder', '2.7.0'
group :development, :test do
gem 'sqlite3', '1.3.13'
gem 'byebug', '9.0.6', platform: :mri
end
group :development do
gem 'web-console', '3.5.1'
gem 'listen', '3.0.8'
gem 'spring', '2.0.2'
gem 'spring-watcher-listen', '2.0.1'
end
group :production do
gem 'pg', '0.20.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
路線
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
root 'application#hello'
end
而且之前我推到Heroku的我做
> bundle update
> bundle install --without production
你可以得到堆棧跟蹤並添加它嗎? – kiddorails
你是在Heroku上運行你的bundle命令還是在本地運行? –
另外,用'rails s -e production'在本地運行你的.appliation,看看它是否給出同樣的錯誤 – kiddorails