iT邦幫忙

1

網頁圖片原始碼,屬性連結顯示不完整

  • 分享至 

  • xImage

https://ithelp.ithome.com.tw/upload/images/20220806/20151143uFFYz1ZcXN.jpg
我想要取得圖片屬性後的完整連結但現在都缺少http
請問如何解決?,感謝!

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
akitect
iT邦新手 5 級 ‧ 2022-08-07 02:16:40
最佳解答

Protocol-relative URL 是相對路徑(relative URL)的一種,以保持使用當前的協議。

如果爬蟲使用的是 Python,可以透過 urllib.parse 中的 urljoin 解決:

from urllib.parse import urljoin

base_url = "https://gnn.gamer.com.tw/"
link = "//gnn.gamer.com.tw/detail.php?sn=235918"

new_url = urljoin(base_url, link)
print(new_url)

結果為:

https://gnn.gamer.com.tw/detail.php?sn=235918

我要發表回答

立即登入回答