hocjooker@gmail.com 1 жил өмнө
parent
commit
6c2d1770ac
1 өөрчлөгдсөн 1 нэмэгдсэн , 9 устгасан
  1. 1 9
      main.go

+ 1 - 9
main.go

@@ -59,15 +59,7 @@ func main() {
 
 	doc.Find("link ~ meta").Each(func(i int, s *goquery.Selection) {
 		v, _ := s.Attr("property")
-		if v == "og:description" {
-			fmt.Println("og:description : ", s.AttrOr("content", ""))
-		} else if v == "og:title" {
-			fmt.Println("og:title : ", s.AttrOr("content", ""))
-		} else if v == "og:image" {
-			fmt.Println("og:image : ", s.AttrOr("content", ""))
-		} else if v == "product:price:currency" {
-			fmt.Println("currency : ", s.AttrOr("content", ""))
-		}
+		fmt.Println(v, "  : ", s.AttrOr("content", ""))
 	})
 
 	fmt.Println("Author : ")