基本用法 infos := make([]info, 0) c := colly.NewCollector() c.OnHTML(".content div .rprt", func(e *colly.HTMLElement) { title := e.ChildText(".rslt p.title a") author := e.ChildText(".supp .desc") message := e.ChildText(".supp .details") pmid := e.ChildText(".aux .resc .rprtid dd") id, _ := strconv.ParseInt(pmid, 10, 64) i := info{ title: strings.TrimRight(title, "."), author: author, message: message, pmid: id, } infos = append(infos, i) }) c.OnRequest(func(req *colly.Request) { log.Println("Visit:", req.URL.String()) }) c.Post("https://www.ncbi.nlm.nih.gov/pubmed", map[string]string{ "term": "kif15", "p$a": strconv.
Read More →