作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是代码:https://play.golang.org/p/Sizbc3uJt_c
我尝试替换这个简单的循环
for c := n.FirstChild; c != nil; c = c.NextSibling {
indent(space+" ", c)
}
html
head
body
a
1
a
1
div
a
2
a
3
if n.FirstChild != nil {
indent(space+" ", n.FirstChild)
}
if n.FirstChild != nil && n.FirstChild.NextSibling != nil {
indent(space+" ", n.FirstChild.NextSibling)
}
html
head
body
a
1
a
1
if n.FirstChild != nil {
indent(space+" ", n.FirstChild)
}
if n.NextSibling != nil {
indent(space+" ", n.NextSibling)
}
html
head
body
a
1
a
1
div
a
2
a
3
最佳答案
如果您想使用第二组代码,建议您使用奇怪的缩进,下面是解决方案:
package main
import (
"fmt"
"log"
"strings"
"golang.org/x/net/html"
)
func main() {
r := strings.NewReader(`<a href="test1.html">1</a><a href="test1.html">1</a><div><a href="test2.html">2</a><a href="test3.html">3</a></div>`)
doc, err := html.Parse(r)
if err != nil {
log.Fatalln(err)
}
indent("", doc)
}
func indent(space string, n *html.Node) {
fmt.Println(space, n.Data)
if n.FirstChild != nil {
indent(space+" ", n.FirstChild)
}
if n.NextSibling != nil {
indent(space, n.NextSibling)
}
}
+" "
的缩进调用的多余
n.NextSibling
,以使同级节点不会比其先前的同级节点进一步推出。
关于go - 如何用两个手动调用替换简单的两匝回路(棘手),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59527440/
我是一名优秀的程序员,十分优秀!