Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 d3.text() 加载文本文件。我想避免使用浏览器的缓存。任何人都知道如何做到这一点?谢谢!
看不到 MIME 类型如何解决这个问题。
您可以通过向 url 附加一个随机数来避免缓存(这是与 d3 无关的一般做法)。所以,如果你的网址是
var url = 'http://www.example.com/somthing';
然后提出你的要求
d3.text( url + '?' + Math.floor(Math.random() * 1000) );
更多信息在这里