こんにちは、私はRubyonRailsを初めて使用します。
このエラーが発生します:未定義のローカル変数またはメソッド `hej '
私のapplication.html.erbには次のものがあります。
<%=hej%>
そしてapplication.controllerで私はこれを持っています:
class ApplicationController < ActionController::Base
def index
hej = "Hej hans" #also tried @hej = "Hej hans"
end
end
__URL / home / index