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.
我想知道是否可以使用 rails 读取外部 Joomla 网站的 json 内容?
我需要使用 Nokogiri 来完成这样的任务吗?
好吧,Nokogiri 是用来解析 html 的。这就是您将如何使用纯红宝石(在 Rails 中您可能甚至不需要这些):
require 'open-uri' require 'json' response = open("http://path.to.website/file.json").read JSON.parse(response)