我非常喜欢多态风格的url,所以我可以写
link_to 'New taste',[:new,:taste]
代替
link_to 'New taste',new_taste_path
但是可以在不使用polymorphic_url / polymorphic_path的情况下将查询参数添加到第一个参数吗?
是的 – 您可以这样传递:
link_to 'New taste',[[:new,:taste],:a_param => 'param']
原文链接:https://www.f2er.com/ruby/270802.html