问题标签 [html-safe]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
258 浏览

ruby - ruby 中 html_safe 字符串的正确格式

我已经尝试了一段时间了...

你能告诉我正确的放置方式是什么...谢谢你的帮助。

克里斯。

0 投票
2 回答
1729 浏览

ruby-on-rails - 通过 twitter bootstrap 在 popover 上渲染 html

我无法将放置在 yml 文件中的 html 呈现为通用 popover 的数据属性。我将以这种方式呈现文本字段:

在 yml 文件中我有:

但输出不是 html 代码,而是包含 html 标记的普通版本。

我尝试使用 raw 和 .html_safe 但我总是得到相同的结果。

我怎样才能解决这个问题?谢谢

0 投票
2 回答
6430 浏览

ruby-on-rails - 在 Rails 中同时使用 simple_format 和 html_safe

在中@post.content,我想要

1.simple_format,所以内容会有不同的行,而不是在没有中断的单行中

2.html_safe,因此用户可以粘贴一些<embed>视频链接,如 youtubes

可以<%= simple_format @post.content %>单独<%= @post.content.html_safe %>使用

但是当我一起使用它们时:<%= simple_format @post.content.html_safe %>html_safe 不起作用,因此<embed>视频不显示

你能告诉我如何同时启用<embed>代码simple_format吗?还是有其他解决方案来显示@post.content?谢谢!!!

0 投票
1 回答
5564 浏览

ruby-on-rails - Rails 4 raw html_safe 不工作

我无法在视图中转义原始 html 标记

原始和 html_safe

给我这个输出,而不转义 html 标签

0 投票
1 回答
1113 浏览

css - 如何在 Rails 应用程序中使用 html_safe 修复样式?

当我包含 '.html_safe' 时,我发现样式 (lass = 'lead' style = 'font-size: 14px;') 没有被使用。当我删除 .html_safe 时,我得到了样式,但现在显示了所有 html。

关于如何解决这个问题的任何建议?

没有 html 的 @chapter.chaptext 的内容:

0 投票
2 回答
810 浏览

ruby-on-rails - html_safe is not working in ruby on rails

I am using ckeditor to save posts content. If I save anything in my db then it saves content with html tags. To escape html i am using <%= raw(posts.content) %> function. I am using Speak.js for adding functionality to listen posts content also. Here i am doing like this ...

but here it speaks content with html tags. I tried to do like this also

But nothing works for me. How can I escape html tags so that my posts audible without HTML tags

0 投票
0 回答
303 浏览

ruby-on-rails - Raw 和 html_safe 不适用于 Rails 4.0

我第一次使用 gem“bootstrap-wysihtml5-rails”。在我使用 ckeditor 之前,这两个标签都可以在 ckeditor 上正常工作。但 bootstrap-wysihtml5-rails 不是这种情况。

截图来自 2013-07-03 03 17 05

另请参阅“原始”的结果。您可以清楚地看到 html 标签仍然可见。

截图来自 2013-07-03 03 19 16

有什么帮助吗??

谢谢

0 投票
1 回答
563 浏览

css - best_in_place 和 html_safe

我在我的 rails 应用程序中使用best_in_place gem来允许内联编辑。我在尝试使某些文本 html 安全时遇到问题。

没有指定文本应该是 html_safe,它在页面上看起来是这样的:在此处输入图像描述

我查看了 best_in_place 文档并尝试添加以下行以使文本 html 安全:

但这最终看起来如下所示:

在此处输入图像描述

看起来文本忽略了我的 css 溢出规则,而且当已经有描述时,best_in_place 编辑使用 nil 占位符(“添加描述......”)。 使用 best_in_place 生成 html_safe 文本的最佳方法是什么?

这是我的CSS:

0 投票
1 回答
368 浏览

ruby-on-rails - 如何在视图中包含来自 wysihtml5 的 html?

我使用 wysihtml5 gem 准备了文本内容,我想在 div 中显示。问题是如何“渲染”这个文本内容,以保证“安全”。我应该使用

或者

或者

或者...

0 投票
4 回答
209 浏览

ruby-on-rails - ruby 中的截断和原始方法是互斥的吗?

我正在尝试这样做truncate raw(@some_text), length: 300。当文本超过 300 个字符的限制时,我会在文本中看到 html 标签。

我需要在文本中截断和实现 html(前置和附加的标签)属性。还有其他方法可以做到这一点吗?提前致谢。