Nokogiri displaying data in view
问题 Trying to figure out how display the text and images I have scraped in my application/html. Here is my app/scrape2.rb file require 'nokogiri' require 'open-uri' url = "https://marketplace.asos.com/boutiques/independent-label" doc = Nokogiri::HTML(open(url)) label = doc.css('#boutiqueList') @label = label.css('#boutiqueList img').map { |l| p l.attr('src') } @title = label.css("#boutiqueList .notranslate").map { |o| p o.text } Here is the controller: class PagesController <