鱼C论坛

 找回密码
 立即注册
查看: 1327|回复: 1

[已解决]爬虫 previous_sibling 的问题

[复制链接]
发表于 2022-4-28 17:36:24 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
# 当网站的下方页码如下时,采用两次 previous_sibling,网上说 previous_sibling 的作用是找向前最近的一个兄弟节点,如何更好的理解呢?

<前页  1 2 3 4 5 6 7 8 9 10  后页>  (共250条)

# 代码如下
def find_depth(res):
    soup = BeautifulSoup(res.text, "html.parser")
   
    # previous_sibling.previous_sibling.text 找向前最近的兄弟节点(不理解)
    depth = soup.find("span", class_="next").previous_sibling.previous_sibling.text
    return int(depth)
最佳答案
2022-4-28 20:20:15


简单说就是返回调用此属性的节点对象的前一个兄弟节点,看看这个例子:
<body>
    <div class="box1">
        ...
    </div>
    <div class="box2">
        ...
    </div>
    <div class="box3">
        ...
    </div>
    <div class="box4">
        ...
    </div>
</body>

box4 的 前一个兄弟节点是  box3 ,box3 的 前一个兄弟节点是 box2 ...... 以此类推

若 soup.find("div", class_="box4") 此时获取到的是 第四个 div 节点,即 class = "box4"

对此节点对象,调用一次 previous_sibling 则返回的就是 第四个 div 节点 紧跟着的兄弟节点,即 class = "box3"  的 div 节点

若对 第四个 div 节点调用两次 previous_sibling 就相当于对第三个节点调用 一次 previous_sibling


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-4-28 20:20:15 | 显示全部楼层    本楼为最佳答案   


简单说就是返回调用此属性的节点对象的前一个兄弟节点,看看这个例子:
<body>
    <div class="box1">
        ...
    </div>
    <div class="box2">
        ...
    </div>
    <div class="box3">
        ...
    </div>
    <div class="box4">
        ...
    </div>
</body>

box4 的 前一个兄弟节点是  box3 ,box3 的 前一个兄弟节点是 box2 ...... 以此类推

若 soup.find("div", class_="box4") 此时获取到的是 第四个 div 节点,即 class = "box4"

对此节点对象,调用一次 previous_sibling 则返回的就是 第四个 div 节点 紧跟着的兄弟节点,即 class = "box3"  的 div 节点

若对 第四个 div 节点调用两次 previous_sibling 就相当于对第三个节点调用 一次 previous_sibling


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-18 14:29

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表