这里直接贴代码
package main
import (
"fmt"
"github.com/PuerkitoBio/goquery"
"log"
"strings"
)
type HotsContent struct {
num int
content string
comment string
url string
}
func main() {
fmt.Println("开始爬取糗事百科热点笑话...")
js, err := goquery.NewDocument("https://www.qiushibaike.com/hot/")
if err != nil {
log.Fatal(err)
}
js.Find("#content-left .article").Each(func(i int, contentSelection *goquery.Selection) {
//先判断是否有图片
img, _ := contentSelection.Find(".thumb a").Attr("href")
if len(img) == 0 {
hotsArt := HotsContent{}
content := contentSelection.Find(".content span").Text()
url, _ := contentSelection.Find(".contentHerf").Attr("href")
comment_name := contentSelection.Find(".cmtMain .cmt-name").Text()
comment_cont := contentSelection.Find(".cmtMain .main-text").Text()
hotsArt.num = i + 1
hotsArt.url = "https://www.qiushibaike.com" + url
hotsArt.content = strings.Replace(content, "\n", "", -1)
hotsArt.comment = strings.Replace(comment_name+comment_cont, "\n", "", -1)
fmt.Println("第", hotsArt.num, "个笑话:")
fmt.Println("\t", hotsArt.content)
fmt.Println("\t 最热评论:" + hotsArt.comment)
fmt.Println("\t 地址", hotsArt.url)
fmt.Println("======================================================")
}
})
}
谢绝吐槽,写着练手玩玩的
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.