本文整理匯總了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]
}
示例2: CallRule
// 用指定規則解析響應流
func (self *Spider) CallRule(ruleName string, resp *context.Response) {
resp.SetRuleName(ruleName)
self.GoRule(resp)
}
示例3: ExecParse
// 根據響應流運行指定解析Rule,僅用於crawl模塊,Rule中請使用Parse()代替
func (self *Spider) ExecParse(resp *context.Response) {
self.RuleTree.Trunk[resp.GetRuleName()].ParseFunc(self, resp)
}
示例4: GoRule
// 根據響應流運行指定解析規則,不推薦在規則中使用
func (self *Spider) GoRule(resp *context.Response) {
self.RuleTree.Nodes[resp.GetRuleName()].ParseFunc(self, resp)
}
示例5: Parse
// 調用指定Rule下解析函數ParseFunc(),解析響應流
func (self *Spider) Parse(ruleName string, resp *context.Response) {
resp.SetRuleName(ruleName)
self.ExecParse(resp)
}