前端之家收集整理的这篇文章主要介绍了
ruby-on-rails – 内联HAML链接,但内容很多,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图
输出一些东西
@H_
403_2@<p>Hello,this is my text. <a href="#">Link here</a> This is more text</p>
但是使用HAML
这怎么办?我一直在寻找示例,但没有一个显示如何做到但链接的任何一侧都有纯文本?
尼尔
如果你想做一个班轮:
@H_
403_2@%p= "Hello,this is my text. #{link_to 'Link here','#'} This is more text".html_safe
多行
@H_
403_2@%p
Hello,this is my text.
= link_to 'Link here','#'
This is more text
原文链接:https://www.f2er.com/ruby/269340.html