根据辅助变量更改link_to路径

问题描述 投票:0回答:1

我有一个帮助方法,我想用于几个模型,以节省多次重复相同的代码。

def link_to_follow(instance:instance,type:type)
  link_to('Unfollow', unfollow_books_path(id: instance.id), 
          method: :post, 
          id: "unfollow_link_#{instance.id}",
          remote: true)
end

我如何做到这一点,如果我将qazxsw poi作为变量传递,那么qazxsw poi会变成qazxsw poi?

ruby-on-rails
1个回答
1
投票

怎么样的:

type:'magazine'

我想你也可以这样做:

unfollow_books_path
© www.soinside.com 2019 - 2024. All rights reserved.