在 Rails 中检索页面标题

发布于 2024-08-04 13:24:50 字数 198 浏览 4 评论 0原文

好奇如何使用 ruby​​/rails 解决同样的问题 - 最快的方法检索在 PHP</a>

有没有人推荐的插件或 gem?干杯!

Curious as to how to approach this same problem using ruby / rails - Fastest way to retrieve a <title> in PHP

Is there a plugin or gem that anyone recommends? cheers!

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

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

发布评论

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

评论(2

疯到世界奔溃 2024-08-11 13:24:50

本着与 PHP 的精神相同的精神,让我们在没有特殊宝石的情况下做到这一点:

require 'open-uri'
open('http://www.google.com').read.match(/<title>(.*?)<\/title>/)[1]

......然后 Google 就出来了

In the same spirit as the PHP tread, lets do this with no special gems:

require 'open-uri'
open('http://www.google.com').read.match(/<title>(.*?)<\/title>/)[1]

..and out comes Google

最笨的告白 2024-08-11 13:24:50

使用 Nokogiri 可能会非常容易。

This would probably be pretty easy with Nokogiri.

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