我创建了一个网络刮刀。
我正在努力将结果保存到模型的列中。
如何将报废结果的结果推送到列中?
你正在映射吗?想了解它,所以我最终可以发布索引或...显示以前保存的结果等...模式
ActiveRecord::Schema.define(version: 20170308223314) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "links", force: :cascade do |t|
t.string "link_info"
t.string "date"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
end
我要保存的两个列是您在上面的架构中看到的列:link_info
和date
...
当前控制器
class LinksController < ApplicationController
def craigslist_scrape
require 'open-uri'
url = "https://losangeles.craigslist.org/search/web"
page = Nokogiri::HTML(open(url))
@craigslist_info = page.css("ul.rows")
@link_info = page.css("li.result-row p.result-info a.result-title.hdrlnk")
@date = page.css("li.result-row p.result-info time.result-date")
end
end
craiglist_scrape.html.erb
<% @link_info.each_with_index do |link, index| %>
<h2><%= "Title of the job: #{link.text}" %></h2>
<p><%= "Date: #{@date[index].text}" %></p>
<% end %>
路由
Rails.application.routes.draw do
root 'links#craigslist_scrape'
end
模型
class Link < ApplicationRecord
end
答案 0 :(得分:1)
在控制器中,您可以添加:
def craigslist_scrape
require 'open-uri'
url = "https://losangeles.craigslist.org/search/web"
page = Nokogiri::HTML(open(url))
@craigslist_info = page.css("ul.rows")
@link_info = page.css("li.result-row p.result-info a.result-title.hdrlnk")
@date = page.css("li.result-row p.result-info time.result-date")
@link_info.each_with_index do |link, index|
Link.new(:link => link.text, :date => @date[index].text).save
end
end
答案 1 :(得分:1)
我对Ruby很陌生并且对Rails了解不多,但是当我尝试将某些东西保存到“数据库”中时,我总是这样做,我创建了一个哈希。例如:
database = {}
puts "What is your name?"
input = gets.chomp
puts "What's your age?"
input_2 = Integer(gets.chomp)
database[input.to_sym] = input_2
在上面的示例中,我创建了一个名为“database”的哈希,并询问用户他们的名字和年龄。将用户的名称存储为数据库的字符串值,将其年龄存储为整数值。我不知道这是否有帮助,就像我说我对Ruby很新。