我正在尝试从网站上获取一系列产品名称。我正在使用fabpot / goutte。我可以从网站上获得某些类别的值,但是当我尝试获取产品名称或产品价格时,会得到类似{{ProductName}}的信息。
这是我的代码:
$client = new \Goutte\Client();
$crawler = $client->request('GET','http://www.thefirestore.com/store/category.aspx/categoryId/577/1010-Helmets-Cairns-Helmets/#/orderby/9');
$crawler->filter('.product-name')->each(function ($node){
echo $node->text().'<br>';
});
谢谢