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.
我正在尝试使用 Ruby 和 Hpricot gem 解析来自 reddit 的图像。
使用 Chrome,我得到了保存图像链接的 div 的 XPath,然后我使用 doc.search 找到它,但结果为空。
doc.search('//*[@id="siteTable"]/div[1]/a').each do |r| puts r.attributes['href'] end
有任何想法吗?