run `v fmt -w examples/web_crawler/web_crawler.v`
parent
790fd88e16
commit
2720e657c2
|
|
@ -15,8 +15,12 @@ fn main() {
|
||||||
// html.DocumentObjectModel.get_tag_by_attribute_value() retrieves all the tags in the document that has the given attribute name and value.
|
// html.DocumentObjectModel.get_tag_by_attribute_value() retrieves all the tags in the document that has the given attribute name and value.
|
||||||
tags := doc.get_tag_by_attribute_value('class', 'list_article_item')
|
tags := doc.get_tag_by_attribute_value('class', 'list_article_item')
|
||||||
for tag in tags {
|
for tag in tags {
|
||||||
href := tag.children[1].children[0].children[0].children[0].attributes['href'] or { panic('key not found') }
|
href := tag.children[1].children[0].children[0].children[0].attributes['href'] or {
|
||||||
title := tag.children[1].children[0].children[0].children[0].attributes['title'] or { panic('key not found') }
|
panic('key not found')
|
||||||
|
}
|
||||||
|
title := tag.children[1].children[0].children[0].children[0].attributes['title'] or {
|
||||||
|
panic('key not found')
|
||||||
|
}
|
||||||
println('href: $href')
|
println('href: $href')
|
||||||
println('title: $title')
|
println('title: $title')
|
||||||
println('')
|
println('')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue