0
私はいくつかのCSSとJSコードと共に作成したhtmlホームページを持っています。私はこれを私のRubyアプリケーションにホームページとして取り込みたいと思っています。私のconfig/routes.rbを、私はこれがあります。rubyホームページをhtmlファイルに変更する
# You can have the root of your site routed with "root"
# just remember to delete public/index.html.
# root :to => 'welcome#index'
root :to => 'first_controller#index', :as => 'first_controller'
を、私のfirst_controller
に私はこれがあります。
class FirstControllerController < ApplicationController
def index
@users = User.all
end
end
は、私は私のhtmlファイルにリダイレクトdef home
メソッドを作成できますか?
@users = User.all
は本の読書のコードで、ルビーのアプリを作る方法を教えてくれて、自分のニーズに合わせて修正しています。 THX