1 回答
TA贡献1793条经验 获得超6个赞
它似乎适用于此:
package main
import (
"os"
"github.com/PuerkitoBio/goquery"
"golang.org/x/net/html"
)
var areWeLooping = make(map[*goquery.Selection]struct{})
func getTagName(s *goquery.Selection) {
if _, weAreLooping := areWeLooping[s]; weAreLooping {
println("loop detected")
os.Exit(1)
}
areWeLooping[s] = struct{}{}
for _, n := range s.Nodes {
if n.Type != html.ElementNode {
continue
}
println(n.Data)
}
s.Children().Each(func(_ int, s *goquery.Selection) {
getTagName(s)
})
}
func main() {
doc, _ := goquery.NewDocument("https://news.ycombinator.com/")
doc.Find("html body").Children().Each(func(_ int, s *goquery.Selection) {
getTagName(s)
})
}
在getTagName(s.Children())循环内部造成了麻烦。
- 1 回答
- 0 关注
- 184 浏览
添加回答
举报