我正在尝试使用以下代码提取车辆ID:

    $client = new Client();
    $request = $client->get('http://www.truck1.eu/_TEN_auto_1522980_Truck_Chassis_MAN_TGA_18_320_BL_Platou_9_80m_lang_manuelles_Getriebe_Euro_4_Motor.html',  ['allow_redirects' => false]);

    $html = $request->getBody(true);

    $crawler = new Crawler();
    $crawler->addContent($html);
    print $crawler->filterXPath('//*[@id="content"]/div/div[2]/table/tbody/tr[2]/td')->text();


但是由于某种原因,我无法正常工作。我正在使用Symfony的Guzzle和DomCrawler。

最佳答案

尝试使用此XPath来获取包含“ Vehicle ID”标签的td旁边的th(并避免一些不必要的祖先依赖):

//td[preceding-sibling::th = 'Vehicle ID']

10-08 11:04