當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Yield.AddItem方法代碼示例

本文整理匯總了Golang中github.com/zhangxiaoyang/goDataAccess/spider/common.Yield.AddItem方法的典型用法代碼示例。如果您正苦於以下問題:Golang Yield.AddItem方法的具體用法?Golang Yield.AddItem怎麽用?Golang Yield.AddItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/zhangxiaoyang/goDataAccess/spider/common.Yield的用法示例。


在下文中一共展示了Yield.AddItem方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Process

func (this *LazyProcesser) Process(resp *common.Response, y *common.Yield) {
	y.AddItem(func() *common.Item {
		item := common.NewItem()
		item.Set("html", resp.Body)
		return item
	}())
}
開發者ID:zhangxiaoyang,項目名稱:goDataAccess,代碼行數:7,代碼來源:lazy_processer.go

示例2: Process

func (this *MyProcesser) Process(resp *common.Response, y *common.Yield) {
	m := regexp.MustCompile(`(?s)<div id="ua_string">.*?</span>(.*?)</div>`).FindAllStringSubmatch(resp.Body, -1)
	for _, v := range m {
		item := common.NewItem()
		item.Set("user-agent", v[1])
		y.AddItem(item)
	}
}
開發者ID:zhangxiaoyang,項目名稱:goDataAccess,代碼行數:8,代碼來源:inject_useragent.go

示例3: processTitle

func (this *MyProcesser) processTitle(resp *common.Response, y *common.Yield) {
	m := regexp.MustCompile(`(?s)<div class="channel-item">.*?<h3><a href="(.*?)">(.*?)</a>`).FindAllStringSubmatch(resp.Body, -1)
	for _, v := range m {
		item := common.NewItem()
		item.Set("url", v[1])
		item.Set("title", v[2])
		y.AddItem(item)
	}
}
開發者ID:zhangxiaoyang,項目名稱:goDataAccess,代碼行數:9,代碼來源:crawl_douban_page_by_page.go

示例4: Process

func (this *MyProcesser) Process(resp *common.Response, y *common.Yield) {
	y.AddItem(func() *common.Item {
		item := common.NewItem()
		item.Set("url", resp.Url)
		item.Set("title", func() string {
			m := regexp.MustCompile(`<title>(.*?)</title>`).FindStringSubmatch(resp.Body)
			if len(m) > 0 {
				return m[1]
			}
			return ""
		}())
		return item
	}())
}
開發者ID:zhangxiaoyang,項目名稱:goDataAccess,代碼行數:14,代碼來源:crawl_baidubaike_and_store_it.go

示例5: Process

func (this *MyProcesser) Process(resp *common.Response, y *common.Yield) {
	items := extractor.NewExtractor().
		SetScopeRule(`(?s)<dt class="basicInfo-item name">.*?</dd>`).
		SetRules(map[string]string{
			"key":   `(?s)name">(.*?)</dt>`,
			"value": `(?s)value">(.*?)</dd>`,
		}).
		SetTrimFunc(extractor.TrimHtmlTags).
		Extract(resp)

	for _, item := range items {
		y.AddItem(item)
	}
}
開發者ID:zhangxiaoyang,項目名稱:goDataAccess,代碼行數:14,代碼來源:crawl_baidubaike_with_extractor.go

示例6: processItems

func (this *QuickEngineProcesser) processItems(resp *common.Response, y *common.Yield, rule _Rule) {
	var TrimFunc extractor.TrimFunc
	switch rule.ItemRule.TrimFunc {
	case "trim_html_tags":
		TrimFunc = extractor.TrimHtmlTags
	case "trim_blank":
		TrimFunc = extractor.TrimBlank
	}

	items := extractor.NewExtractor().
		SetScopeRule(rule.ItemRule.ScopeRule).
		SetRules(rule.ItemRule.KVRule).
		SetTrimFunc(TrimFunc).
		Extract(resp)
	for _, item := range items {
		y.AddItem(item)
	}
}
開發者ID:zhangxiaoyang,項目名稱:goDataAccess,代碼行數:18,代碼來源:quick_engine.go


注:本文中的github.com/zhangxiaoyang/goDataAccess/spider/common.Yield.AddItem方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。