我正在尝试使用活动记录从数据库中访问某些特定数据,而我得到<ScrapedPage::ActiveRecord_Relation:0x00007f1c4502ef78>
而不是实际数据。我敢打赌它很容易丢失,但我无法弄明白。
查询:
@domain = params[:domain].to_s
version_one = ScrapedPage.select("html").where(domain: @domain ,created_at: params[:version_one]).to_s
version_two = ScrapedPage.select("html").where(domain: @domain ,created_at:params[:version_one]).to_s
答案 0 :(得分:3)