我似乎无法将一个变量从路由器传递到视图。这是我的尝试:
在路由器中:
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>
有谁知道为什么这不起作用?