Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经将这个索引设置为表格,并且在其中一列中,我希望为每一行显示多行短文本字符串。如果我只是添加换行符,它们会被转义并在列中逐字显示。
有什么办法可以避免这些列中的 HTML 转义?
似乎我所要做的就是使用所需的输出调用 raw:
raw("your string here,<br>now without escaping the html")
"aaa<br>bbb<br>ccc".html_safe为我工作
"aaa<br>bbb<br>ccc".html_safe