1
我無法刮取產品圖片。我正在使用ajax。我的AJAX文件test.html的,這裏是我的代碼: -刮臉產品圖片網址,來自內容上傳的網站dynamiclly
$("#click_me").click(function() {
$.ajax({
url: "test.php",
asyn:false,
success: function(result){
console.log(result);
}});
});
test.php的文件代碼: -
$url="http://www.kohls.com/catalog/bedroom-mattresses-accessories-furniture.jsp?CN=Room:Bedroom+Category:Mattresses%20%26%20Accessories+Department:Furniture&cc=bed_bath-TN3.0-S-mattresses";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_USERAGENT,"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0 ");
$out = curl_exec($ch);
curl_close($ch);
$out = str_replace("\n", '', $out);
echo $out;
注:請檢查$url
。圖像動態填充,我們無法刮取它們。請我需要快速指導,我已經使用pythonjs以及刮他們,但沒有工作! 謝謝!
沒有東西是$ html =的file_get_contents($網址);將不會獲取產品圖片的html。因爲「產品圖片」使用Ajax調用進行上傳,並且當我發送請求來刮取網址時,它不會刮擦產品html。所以根據您的邏輯,我只會陷入循環,我可能永遠不會獲取圖像的src。 –