我目前正在尝试使用Kanna和Swift解析来自website的图像链接。
但是,当我尝试使用doc.css或doc.xcpath时,它不起作用。我已经使用doc.css来解析标题和日期,但是,我不确定如何解析图像源。如果可能的话,我希望你能在你的答案中包含一种在我的UIImageView中使用图像链接的方法(由IBOutlet链接)。
以下是我尝试的代码,以及网站本身的inspect元素功能的片段。
func parseHTML(html: String) -> Void {
if let doc = Kanna.HTML(html: html, encoding: String.Encoding.utf8) {
for link in doc.xpath(".//div[@class='loop-thumb'/a[1]/img[1]]") {
print(link.text)//where I am trying to get the image source
self.imageURLs.append(link.text)//array of all image links
}
}
self.postTableView.reloadData()//my tableview name
}
答案 0 :(得分:0)
这是我找到图像来源并使用它将其放置在视图控制器中的解决方案。
func parseHTML(html: String) -> Void {
if let doc = Kanna.HTML(html: html, encoding: String.Encoding.utf8) {
for item in doc.xpath("//div[@class='loop-thumb']/a") {//goes through the xpath and looks at the directories for each one that matches
let imageURL = (item.at_xpath("img")?["src"])//gets the image source
if(imageURL! == "https://s0.wp.com/wp-content/themes/premium/mh-magazine/images/noimage_174x131.png"){ //checks if no image, and replaces with The Oracle placeholder image
self.imageURLs.append("https://scontent.fsnc1-1.fna.fbcdn.net/v/t1.0-9/12002228_10153530981476668_4060049645901806384_n.jpg?oh=daf19a8eaf94db01fddd0516e25146f8&oe=5A4F5E34")//appends placeholder image for each article with no image
}
else {
self.imageURLs.append(imageURL!)//appends the image URL to the array of image urls
}
}
}