我的控制器:Rails的,變量呈現爲`nil`
require 'date'
class DateController < ApplicationController
def wee
@thing=DateTime.now
@va1=12345
end
end
我的看法是:
<h1>Date#show</h1>
<pre><%= @thing.inspect %></pre>
<pre><%= @va1.inspect %></pre>
<p>Find me in app/views/date/show.html.erb</p>
和結果頁面是:
Date#show
nil
nil
Find me in app/views/date/show.html.erb
爲什麼是我的變量沒有顯示?控制器中的命名範圍是否也是如此? 我可以撥打<%= anothercontoller.variable %>
嗎?