建立商店控制器
rails generate controller store index
修改../config/routes.rb 使http://localhost:3000/store/index 成為根目錄
加 root 'store#index'
root 'store#index'
end假定可以從模型中得到可銷售的商品清單
新增default_scope
<% if notice %>
<%= notice %>
<% end %>
<% @products.each do |product| %>
<%= image_tag(product.image_url) %>
<%= sanitize(product.description) %>
<%= product.price %>
<% end %>
現在設定乙個佔位布局
pragprog books online store
<%= image_tag('logo.png') %>
<%= @page_title || "pragmatic bookshelf" %>
home
questions
news
contact
<%= yield %>
在depot.css 中加入以下**
#banner
#banner img
#columns
#main
#side
#side a
<%= product.price %> 改為
<%= number_to_currency(product.price) %>
rails學習筆記 維護商品資訊任務A
rails new depot cd depot 生成腳手架 rails generate scaffold product title string description text image url string price decimal 在 depot db migrate 中會生成遷移檔...
爬取京東商品資訊
爬取京東商品資訊 from selenium import webdriver from selenium.webdriver import chromeoptions from selenium.webdriver import actionchains from selenium.webdriv...
c 爬蟲爬取商品資訊
在乙個小專案中,需要用到京東的所有商品id,因此就用c 寫了個簡單的爬蟲。在解析html中沒有使用正規表示式,而是借助開源專案htmlagilitypack解析html。public static string downloadhtml string url,encoding encode catc...