ruby-on-rails – 内联HAML链接,但内容很多

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 内联HAML链接,但内容很多前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图输出一些东西
<p>Hello,this is my text. <a href="#">Link here</a> This is more text</p>

但是使用HAML

这怎么办?我一直在寻找示例,但没有一个显示如何做到但链接的任何一侧都有纯文本?

尼尔

解决方法

如果你想做一个班轮:
%p= "Hello,this is my text. #{link_to 'Link here','#'} This is more text".html_safe

多行

%p 
  Hello,this is my text. 
  = link_to 'Link here','#'
  This is more text
原文链接:https://www.f2er.com/ruby/269340.html

猜你在找的Ruby相关文章