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


Golang context.Response類代碼示例

本文整理匯總了Golang中github.com/henrylee2cn/pholcus/crawl/downloader/context.Response的典型用法代碼示例。如果您正苦於以下問題:Golang Response類的具體用法?Golang Response怎麽用?Golang Response使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: GetOutFeild

// 獲取任務規則采集語義字段
func (self *Spider) GetOutFeild(resp *context.Response, index int) string {
	return self.RuleTree.Nodes[resp.GetRuleName()].OutFeild[index]
}
開發者ID:sandeepone,項目名稱:pholcus,代碼行數:4,代碼來源:spider.go

示例2: CallRule

// 用指定規則解析響應流
func (self *Spider) CallRule(ruleName string, resp *context.Response) {
	resp.SetRuleName(ruleName)
	self.GoRule(resp)
}
開發者ID:sandeepone,項目名稱:pholcus,代碼行數:5,代碼來源:spider.go

示例3: ExecParse

// 根據響應流運行指定解析Rule,僅用於crawl模塊,Rule中請使用Parse()代替
func (self *Spider) ExecParse(resp *context.Response) {
	self.RuleTree.Trunk[resp.GetRuleName()].ParseFunc(self, resp)
}
開發者ID:Tifancy,項目名稱:pholcus,代碼行數:4,代碼來源:spider.go

示例4: GoRule

// 根據響應流運行指定解析規則,不推薦在規則中使用
func (self *Spider) GoRule(resp *context.Response) {
	self.RuleTree.Nodes[resp.GetRuleName()].ParseFunc(self, resp)
}
開發者ID:sandeepone,項目名稱:pholcus,代碼行數:4,代碼來源:spider.go

示例5: Parse

// 調用指定Rule下解析函數ParseFunc(),解析響應流
func (self *Spider) Parse(ruleName string, resp *context.Response) {
	resp.SetRuleName(ruleName)
	self.ExecParse(resp)
}
開發者ID:Tifancy,項目名稱:pholcus,代碼行數:5,代碼來源:spider.go


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