如何用Goquery检索儿童元素的完整HTML



为什么以下测试失败?

func TestGetFirstElementHtml(t *testing.T) {
    test := `<speak><p>My paragraph</p></speak>`
    doc, _ := goquery.NewDocumentFromReader(strings.NewReader(test))
    var childrenHtml []string
    doc.Find("speak").Children().Each(func(i int, s *goquery.Selection) {
        html, _ := s.Html()
        childrenHtml = append(childrenHtml, html)
    })
    if childrenHtml[0] != "<p>My paragraph</p>" {
        t.Fatalf("First element html is not valid: '%s'", childrenHtml[0])
    }
}

这是测试结果:

=== FAIL: . TestGetFirstElementHtml (0.00s)
    main_test.go:45: First element html is not valid: 'My paragraph'

换句话说,鉴于我无法预测孩子是什么样的html元素,我该如何检索第一个孩子的完整HTML?

您想要的实际上是外部HTML,您可以通过调用goquery.OuterHTML函数来获得它。根据文档:

func OuterHtml(s *Selection) (string, error)

exouthtml返回第一个项目的外部HTML渲染 选择 - 即,HTML包括第一个元素的标签, 属性。

与innerhtml不同,这是一个函数,而不是一种方法 选择,因为这不是jQuery方法(在JavaScript-Land中, 这是DOM提供的属性。

所以只需将行更改为:

html, _ := goquery.OuterHTML(s)

相关内容

  • 没有找到相关文章

最新更新