安居客数据爬取使用xpath解析无法获取数据为什么??

# 所在城区
        dist = response.xpath('//*[@id="header"]/div[2]/div[1]/a[2]/text()').extract_first()
        # 发布时间
        release_time = response.xpath(
            '//*[@id="container"]/div[1]/div[2]/div[1]/dl/dd[2]/span/text()').extract_first()

        # print(title,phone,price,address,city,open_quotation_date,delivery_date)
        # 用户浏览数
        user_review = response.xpath('//*[@id="j-user-coment"]/div[1]/div[1]/a/text()').extract_first()
        # 实地看房人数
        on_site_inspection = response.xpath('//*[@id="j-user-coment"]/div[1]/div[2]/div[1]/a[4]/text()').extract_first()

其它信息都能正常爬取,只有用户浏览数,实地看房人数两种数据无法爬取,不知道为什么?

 

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 以帮助更多的人 ^-^