我的页面有 url
http://localhost:3000/athletes/list
当用户在此页面上搜索时,它会变为类似
http://localhost:3000/athletes/list?first_name=sachin&last_name=tendulkar
wherefirst_name
和last_name
是用户搜索时的搜索参数。
for ex.
我想要一个在 url 中为第一个 URL添加参数 view_type=something 的链接
http://localhost:3000/athletes/list?view_type=something
对于第二个网址
http://localhost:3000/athletes/list?first_name=sachin&last_name=tendulkar&view_type=something
我试过以下
<%= link_to "Something ", :view_type => 'something' %>
但是对于这两个网址,它都会提供以下网址
http://localhost:3000/athletes/list?view_type=something