我有这段代码:
def show_block_path
Rails.application.routes.url_helpers.gate_path(resource_id))
end
我试图重构它:
def show_block_path
Rails.application.routes.url_helpers."{resource_type.downcase}"_path(resource_id))
end
resource_type.downcase
是"gate"
,但该方法不起作用。为什么呢?
答案 0 :(得分:4)
def show_block_path
Rails.application.routes.url_helpers.public_send(
"#{resource_type.downcase}_path", resource_id
)
end