使用当前日期动态更新嵌入式Google趋势图

时间:2019-02-24 17:23:12

标签: javascript embed google-trends

我正在尝试使用Google趋势自身提供的嵌入代码将Google趋势图嵌入到Wordpress网站的页面上,例如:

<script type="text/javascript" src="https://ssl.gstatic.com/trends_nrtr/1709_RC01/embed_loader.js"></script> <script type="text/javascript"> trends.embed.renderExploreWidget("TIMESERIES", {"comparisonItem":[{"keyword":"sample word","geo":"","time":"2004-01-01 2019-02-24"}],"category":0,"property":""}, {"exploreQuery":"date=all&q=sample%20word","guestPath":"https://trends.google.com:443/trends/embed/"}); </script>

问题是,如嵌入模式中所述:

  

此数据是静态的,不会更新

enter image description here

但是,看来可以通过将嵌入代码中time参数中定义的结束日期更新为当前日期的值来解决该问题,从而确保图形始终是最新的:

"time":"2004-01-01 2019-02-24"

today's date将取代上面的2019-02-24

可以使用简单的var date = today.getDate();完成此操作吗?如果是,将其包含在嵌入代码中的最干净方法是什么?

0 个答案:

没有答案