我希望在表单标签中包含一个链接,如下所示:
<%= form.check_box 'eula' %>
<%= form.label 'eula', "I agree to the <a href='#' id='eula-link'>EULA</a>", class: 'label-checkbox' %>
Rails 可能会写出 HTML,但我该如何完成呢?单击 EULA 会打开一个 JS 弹出窗口。我正在考虑以某种方式在其中嵌入一个link_to?
我希望在表单标签中包含一个链接,如下所示:
<%= form.check_box 'eula' %>
<%= form.label 'eula', "I agree to the <a href='#' id='eula-link'>EULA</a>", class: 'label-checkbox' %>
Rails 可能会写出 HTML,但我该如何完成呢?单击 EULA 会打开一个 JS 弹出窗口。我正在考虑以某种方式在其中嵌入一个link_to?
使用html_safe
with parens 将呈现 html,如下所示:
<%= f.input :eula, :as => :boolean, label: ("I agree to the #{link_to 'Terms of Service', terms_path}.").html_safe %>
假设您正在使用 vanilla rails form helpers,您可以这样做:
f.label :eula do
'I agree to the #{link_to("EULA", "#")}'
end
来源:http ://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html#method-i-label
尝试了 19 种方法,超链接被编码或 html_safe 替换 url 中的连字符???
这对我有用
<%= f.label :cookies do
"Do you agree to our #{link_to('Cookies Policy', 'http://www.your-url.co.uk/privacypolicy')}".html_safe
end %>
" 和 ' 的具体使用似乎很重要。
jenson-button-event 的答案几乎对我有用,但需要更改接近加载的括号位置而不会出现错误。
对我来说,下面解决了它。请注意此处“Cookies Policy”之后的右括号,而不是链接路径本身之后。
<%= f.label :cookies do
"Do you agree to our #{link_to('Cookies Policy'), 'http://www.your- url.co.uk/privacypolicy'}".html_safe
end %>
尝试“我同意 #{link_to 'EULA', #, :id => 'eula-link'}”
从 rails 6.0.2.1(2020 年 1 月)开始,这对我有用:
<div class="form-group form-check">
<%= form.check_box :accept_terms, class: "form-check-input", required: true %>
<%= form.label :accept_terms, class: "form-check-label" do %>
<span>
Accept <%= link_to 'Terms and Conditions', 'https://your.url.here.com' %>
</span>
<% end %>
</div>