除 :target => '_blank' 外,一切正常。为什么这不会在新页面中呈现链接? 最佳答案 从 butto-6ren">
gpt4 book ai didi

ruby-on-rails - 如何使用 ruby​​ 在新窗口中打开链接?

转载 作者:太空宇宙 更新时间:2023-11-03 17:21:16 26 4
gpt4 key购买 nike

<li class="li_spacing"><%= button_to "Website", @restaurant.website, :target => '_blank', :class => "btn btn-primary" %></li>

:target => '_blank' 外,一切正常。为什么这不会在新页面中呈现链接?

最佳答案

button_to 更改为 link_to:

<%= link_to "Website", @restaurant.website, target: "_blank" %>

button_to 是在表单内生成的,如果您仍想使用它:

button_to "Website", @restaurant.website, class: 'btn btn-primary', form: {target: '_blank'}

关于ruby-on-rails - 如何使用 ruby​​ 在新窗口中打开链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38799573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com