下载excel文件

下载excel文件

downloadFile = (url) => {
    
    
		// window.location.href = url;
        let elemIF = document.createElement('iframe');
        elemIF.src = url;
        elemIF.style.display = 'none';
        document.body.appendChild(elemIF);
    } 
    
<Button onClick={
    
    this.downloadFile.bind(this, '一个excel文件url地址')} >下载</Button>

猜你喜欢

转载自blog.csdn.net/jiaojiao51290/article/details/113373868