灰晨 发表于 2021-7-29 11:08:08

爬虫,源码缺失?


代码
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>中间的数字没了???

nahongyan1997 发表于 2021-7-29 11:10:17

可能是用 js 动态加载出来的,你看到那个span 是有 id 的 ,就是用来给 js 定位用的,所以你直接访问页面就什么都没有,

网址是啥啊
我看看有没有接口

kogawananari 发表于 2021-7-29 11:13:14

这是元素不是源码

灰晨 发表于 2021-7-29 11:14:21

https://www.ti.com/store/ti/en/p/product/?p=TL072CP

灰晨 发表于 2021-7-29 11:17:57

nahongyan1997 发表于 2021-7-29 11:10
可能是用 js 动态加载出来的,你看到那个span 是有 id 的 ,就是用来给 js 定位用的,所以你直接访问页面就 ...

https://www.ti.com/store/ti/en/p/product/?p=TL072CP

wp231957 发表于 2021-7-29 11:48:33

灰晨 发表于 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 11:54:18

本帖最后由 大马强 于 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"])

结果同楼上

灰晨 发表于 2021-7-29 12:04:03

wp231957 发表于 2021-7-29 11:48
2118在这里




感谢

灰晨 发表于 2021-7-29 12:05:04

大马强 发表于 2021-7-29 11:54
结果同楼上

感谢

nahongyan1997 发表于 2021-7-29 13:03:32

灾难总是快我一步

1227028655 发表于 2022-5-23 02:33:57

你好,Ti监控软件和限购解除你有接触吗
页: [1]
查看完整版本: 爬虫,源码缺失?