我想要链接到
http://example.com/shop/:shop_name
所以应该是这样的。
<%= link_to "Shop", req.host + "/shop/"+ @shop.shop_name , :class => 'btn' %>
我不想在这里使用something_path
或something_url
。
我只想从当前主机和变量创建 url 链接。
我怎样才能?
更新:
<%= link_to "Shop", request.host + /shop/ +@shop.shop_name , :class => 'btn' %>
这让我
http://www.example.com/shop/www.example.com/shop/walmart