我第一次使用Go进行编程尝试我试图从Psiu Puxa自动下载可爱的壁纸,使用基于HTML中帖子标题的文件名保存图像。
但是,我还没有找到如何将文本节点的值作为字符串。
示例HTML,简化:
<div class="post">
<a class="w-inline-block post-name-link" href="/posts/mars-30">
<h4>#80 Martian Landscape</h4>
</a>
</div>
<div class="post">
<a class="w-inline-block post-name-link" href="#">
<h4><strong>#79 MARTIAN terrain</strong></h4>
</a>
</div>
我的Go套餐:
package main
import (
"fmt"
"net/http"
"io/ioutil"
"github.com/moovweb/gokogiri"
)
func main() {
resp, _ := http.Get("http://psiupuxa3.webflow.io/")
page, _ := ioutil.ReadAll(resp.Body)
resp.Body.Close()
doc, _ := gokogiri.ParseHtml(page)
res, _ := doc.Search("//div[@class='post']")
defer doc.Free()
for i := range res {
postTitleRes, _ := res[i].Search("a[contains(@class,'post-name-link')]//text()")
fmt.Printf("%T: %v\n", postTitleRes, postTitleRes)
}
}
结果:
[]xml.Node: [#80 Martian Landscape]
[]xml.Node: [#79 MARTIAN terrain]
[]xml.Node: [#78 MARTIAN TERRAIN]
如何将#79 MARTIAN terrain
等作为字符串获取,以便以后在保存文件时使用?
我已尝试postTitle := postTitleRes.String()
,但该方法显然不适用于xml.Node
。我花了一些时间查看Gokogiri的源代码,并找到了强制转换为字符串的方法/指令,但我很遗憾并且会感激任何指针。
答案 0 :(得分:0)
你有一个xml.Node结构数组。您需要访问该数组中包含的节点。
如果你确定你有一个元素,那么你可以
postTitleRes[0].Content()
或捕获所有这些节点:
for _, node := range postTitleRes {
fmt.Printf("%T: %v\n", node, node.Content())
}
一旦你有一个单独的xml.Node,你可以看到Content
函数应该可用。 Definition