2017-09-15 55 views
0

我目前正在嘗試使用Kanna和Swift解析來自website的圖像鏈接。如何從網站獲取圖像源 - Swift和Kanna

但是,當我嘗試使用doc.css或doc.xcpath時,它不起作用。我已經使用doc.css解析標題和日期,但是,我不確定如何解析圖像源。如果可能的話,如果你可以在你的答案中包含一個在我的UIImageView中使用圖像鏈接的方法(通過IBOutlet鏈接),我希望它。

下面是我嘗試過的代碼,也是網站本身的檢查元素功能的一個片段。

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 
    } 

inspect element of website

回答

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 
       } 
      } 


     }