我正在React.js中开发一个Web应用程序,我想下载一个包含图像的Excel文件。我正在使用react-data-export生成Excel文件,但是我不知道如何在其中包含图像。我发现了两个例子:
http://jsfiddle.net/AnilAwadh/qt32a/
$("[id$=myButtonControlID]").click(function(e) {
window.open('data:application/vnd.ms-excel,' + encodeURIComponent( $('div[id$=divTableDataHolder]').html()));
e.preventDefault();
});
https://jsfiddle.net/r8bx18kx/
问题是我不知道该如何实施。