从控制器传递到视图的简单参数

时间:2015-09-10 03:44:26

标签: ruby-on-rails

我似乎无法将一个变量从路由器传递到视图。这是我的尝试:

在路由器中:

get '/show/:handle' => 'users#show'

在控制器中:

def show
  @username = params[:handle]
end

在视图中:

<p>A <%= @username %> B</p>

预期结果(网址&#34; localhost:3000 / users / Alex&#34;):

<p>A Alex B</p>

实际来源(网址&#34; localhost:3000 / users / Alex&#34;):

<p>A  B</p>

有谁知道为什么这不起作用?

0 个答案:

没有答案