对于我的爬虫项目,我需要从 JavaScript 对象获取产品详细信息。
如何有效地从以下 JavaScript 获取对象详细信息?我使用 XPath 和 HTMLAgilityPack。
<script type="text/javascript">
var product = {
identifier: '2051189775', //PRODUCT ID
fn: 'Fit- Whiskered Dark Wash Skirt',
category: ['sale'],
brand: 'Brand Name',
price: '22.90', // this would be the discount price
amount: '31.80', // this would be the original price
currency: 'USD',
//List can me even more.
};
</script>
我之前没有尝试过从 JavaScript 对象中获取详细信息。我直接从 HTML 中获取其他爬虫的详细信息。