我正在尝试获取原始数据,使图表标记为"过去24小时余额:1HS8cq9TDNqr77nwW6WwUZBjSDBLsmpt6e"。我可以告诉他们使用jqplot绘制数据,但无法在源中找到数据。我假设它可能在javascript中的某个地方,因为html指向调用javascript类的画布,但我无法找到它。
以下是我尝试从https://www.ahashpool.com/wallet.php?wallet=1HS8cq9TDNqr77nwW6WwUZBjSDBLsmpt6e
获取数据的网站答案 0 :(得分:0)
这个问题主要涉及更广泛的主题,网页抓取,以下是使用浏览器开发工具追踪数据源的主要步骤:
<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 = ...
中找到数据源网址。因此,完整的数据源网址将为https://www.ahashpool.com/wallet_graph_earnings_results.php?wallet=1HS8cq9TDNqr77nwW6WwUZBjSDBLsmpt6e