您好,我对 ruby on rails 完全陌生。
我收到此错误:未定义的局部变量或方法“hej”
在我的 application.html.erb 我有:
<%=hej%>
在 application.controller 我有这个:
class ApplicationController < ActionController::Base
def index
hej = "Hej hans" #also tried @hej = "Hej hans"
end
end
__URL/主页/索引