爬虫,源码缺失?
代码
resp = requests.get(url)
soup = BeautifulSoup(resp.text, 'html.parser')
r = soup.find('span', class_="product-note product-availability")
print(r)
结果<span class="product-note product-availability"> Inventory: <span id="stock_TL072CP"></span>
</span>
为什么<span id="stock_TL072CP"></span>中间的数字没了??? 可能是用 js 动态加载出来的,你看到那个span 是有 id 的 ,就是用来给 js 定位用的,所以你直接访问页面就什么都没有,
网址是啥啊
我看看有没有接口 这是元素不是源码 https://www.ti.com/store/ti/en/p/product/?p=TL072CP nahongyan1997 发表于 2021-7-29 11:10
可能是用 js 动态加载出来的,你看到那个span 是有 id 的 ,就是用来给 js 定位用的,所以你直接访问页面就 ...
https://www.ti.com/store/ti/en/p/product/?p=TL072CP 灰晨 发表于 2021-7-29 11:17
https://www.ti.com/store/ti/en/p/product/?p=TL072CP
2118在这里
url="https://www.ti.com/storeservices/cart/opninventory?opn=TL072CP"
import requests
res=requests.get(url)
print(res.text)
{"orderable_number":"TL072CP","inventory":2118} 本帖最后由 大马强 于 2021-7-29 12:01 编辑
https://static01.imgkr.com/temp/f36d670b6b8a4f82aa6d05392e0b1a9f.jpg
import requests
url = 'https://www.ti.com.cn/storeservices/cart/opninventory?opn=TL072CP'
req = requests.get(url).json()
print(req["inventory"])
结果同楼上 wp231957 发表于 2021-7-29 11:48
2118在这里
感谢 大马强 发表于 2021-7-29 11:54
结果同楼上
感谢 灾难总是快我一步 你好,Ti监控软件和限购解除你有接触吗
页:
[1]