我正在尝试将文本提取为自定义 html 标记(<prelogin-cookie>):
someHtml := `<html><body>Login Successful!</body><!-- <saml-auth-status>1</saml-auth-status><prelogin-cookie>4242424242424242</prelogin-cookie><saml-username>my-username</saml-username><saml-slo>no</saml-slo> --></html>`
query, _ := goquery.NewDocumentFromReader(strings.NewReader(someHtml))
sel:= query.Find("prelogin-cookie")
println(sel.Text())
但它不返回任何东西,只是一个空字符串,我怎样才能得到那个 html 标签的实际文本,又名4242424242424242?
萧十郎
相关分类