标签: ruby-on-rails
我有数据进入我的控制器并希望在视图中显示它。我尝试过使用辅助方法,但没有运气。我还尝试了一个实例变量,但仍然无法正常工作。
答案 0 :(得分:2)
你可以这样做:
class SomeClass < ApplicationController def index @something = 'This is a cool text' end end
在index.html.erb中你可以这样做:
index.html.erb
<%= @something %>