您好,下面的 XMLHttpRequest 实现,单个请求会下载多个重复文件。有什么办法可以避免这种情况吗?
var location = abc+ "/tasksample/"; var xhr = new XMLHttpRequest(); window.location.assign(location ); xhr.open("GET", location , true); xhr.send();