我正在尝试获取原始数据,使图表标记为“过去24小时余额:1HS8cq9TDNqr77nwW6WwUZBjSDBLsmpt6e”。我可以告诉他们使用jqplot来绘制数据,但是无法在源代码中找到数据。我假设它可能在javascript中的某个地方,因为html指向调用javascript类的画布,但我找不到它。
这是我试图从https://www.ahashpool.com/wallet.php?wallet=1HS8cq9TDNqr77nwW6WwUZBjSDBLsmpt6e获取数据的网站
这个问题主要是关于更广泛的主题,网页抓取,这是使用浏览器开发工具追踪数据源的主要步骤:
<div id='graph_earnings_results' style='height: 240px;'></div>
。<script>
标记中),搜索对'graph_earnings_results'
元素的引用。唯一的地方是graph_earnings_init(data)
功能,其中创建了情节:$.jqplot('graph_earnings_results', t, {...});
。graph_earnings_init(data)
函数从graph_earnings_ready(data)
调用,后者又是graph_earnings_refresh()
函数中的AJAX回调函数。graph_earnings_refresh()
函数var url = ...
中找到。因此,完整的数据源URL将是https://www.ahashpool.com/wallet_graph_earnings_results.php?wallet=1HS8cq9TDNqr77nwW6WwUZBjSDBLsmpt6e