Go使用goquery获取url小实例

前端之家收集整理的这篇文章主要介绍了Go使用goquery获取url小实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package main

import (
	"fmt"

	"github.com/PuerkitoBio/goquery"
)

func main() {
	g,e := goquery.NewDocument("http://gold.3g.cnfol.com/")
	if e != nil {
		fmt.Println(e)
	}
	c := g.Find("ul")
	s := c.Eq(6).Find("a")
	s.Each(func(i int,content *goquery.Selection) {
		a,_ := content.Attr("href")
		fmt.Println(a)
	})
}
原文链接:https://www.f2er.com/go/190260.html

猜你在找的Go相关文章