gpt4 book ai didi

html - 如何向 erb 中的字符串添加空格?

转载 作者:行者123 更新时间:2023-12-05 09:22:08 26 4
gpt4 key购买 nike

我在 erb 中将链接显示为字符串:

<%= link_to (@teacher.id + 1).to_s, "#" %>

如何在开头添加一个空格?如果我这样做:""+ (@teacher.id + 1).to_s,空格将被忽略,如果我这样做:" "+ (@teacher.id + 1).to_s 或此:' ' + (@teacher.id + 1).to_s,它只是将“ ”解释为五个字符的字符串。

最佳答案

试试这个:

<%= link_to "&nbsp;#{@teacher.id + 1}".html_safe, "#" %>

引用:http://apidock.com/rails/String/html_safe

关于html - 如何向 erb 中的字符串添加空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28465329/

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