Scrubyt 获取元数据
如何使用 Scrubyt 获取元名称=“描述”内容=“.....”的内容?
require 'rubygems'
require 'scrubyt'
data = Scrubyt::Extractor.define do
fetch 'http://www.allegro.pl/'
head '//head' do
description '//meta[@name="description"]'
end
end
puts data.to_xml
正确的做法是什么?
How do you fetch the contents of meta name="description" content="....." with Scrubyt ?
require 'rubygems'
require 'scrubyt'
data = Scrubyt::Extractor.define do
fetch 'http://www.allegro.pl/'
head '//head' do
description '//meta[@name="description"]'
end
end
puts data.to_xml
What is the the correct way ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要 content 属性的值,请尝试:
//meta[@name="description"]
选择其 name 属性的元标记等于“description”,但您还需要选择 content 属性的值。If you want the value of the content attribute try:
//meta[@name="description"]
selects the meta tag whose name attribute is equal to "description" but then you also need to select the value of the content attribute.