如何使用 Ruby on Rails 将带有字符的文本转换为 HTML 实体?

发布于 2024-10-21 18:31:30 字数 185 浏览 1 评论 0原文

我想使用 URL 来调用方法,但我需要用 HTML 实体编写它:

所以如果我有 http://www.myurl.com/foobar 例如使用 Ruby on Rails帮手我可以得到类似的东西:

http%3A%2F%2Fwww.myurl.com%2Ffoobar

I Want to use an URL to call a method but i need it to be written with HTML Entities:

so if i have http://www.myurl.com/foobar for example using a Ruby on Rails helper i can get something like:

http%3A%2F%2Fwww.myurl.com%2Ffoobar

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伤感在游骋 2024-10-28 18:31:30

我不知道是否有任何东西直接内置到 Rails 中来完成所有这些转义,但如果您需要'cgi',您可以使用CGI::escape

ruby-1.8.7-p174 :001 > require 'cgi'
 => true 
ruby-1.8.7-p174 :002 > s = "http://www.myurl.com/foobar"
 => "http://www.myurl.com/foobar" 
ruby-1.8.7-p174 :003 > CGI::escape(s)
 => "http%3A%2F%2Fwww.myurl.com%2Ffoobar" 

显然,为了让它在您的视图中或任何地方看起来更好一点,您可以将该方法包装在一个助手中。

I don't know if there's anything built directly into rails to do all of that escaping, but if you require 'cgi' you can use CGI::escape.

ruby-1.8.7-p174 :001 > require 'cgi'
 => true 
ruby-1.8.7-p174 :002 > s = "http://www.myurl.com/foobar"
 => "http://www.myurl.com/foobar" 
ruby-1.8.7-p174 :003 > CGI::escape(s)
 => "http%3A%2F%2Fwww.myurl.com%2Ffoobar" 

Obviously, to make it look a little nicer in your views, or wherever, you could wrap that method in a helper.

我只土不豪 2024-10-28 18:31:30

有一个很棒的 ruby​​gem“htmlentities” 可以做到这一点: http://htmlentities.rubyforge.org/

there is the great rubygem "htmlentities" which does the trick: http://htmlentities.rubyforge.org/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文