我正在尝试从网格中下载文件。
未捕获的SyntaxError:意外的标识符
template: "<a class="sportsDataPlayer" onclick=\"window.open('#= FileName#', 'popup', 'width=310,height=230,scrollbars=yes,resizable=no')\">#= FileName.substring(FileName.lastIndexOf('/')+1) #</a>"
}, {
提供以下代码
template: "<a class="sportsDataPlayer" onclick=\"window.open('#= FileName#', 'popup', 'width=310,height=230,scrollbars=yes,resizable=no')\">#= FileName.substring(FileName.lastIndexOf('/')+1) #</a>"
var csv = "a,b,c\n1,2,3\n";
var data = new Blob([csv]);
var a2 = document.getElementById(".sportsDataPlayer");
alert("I am here");
a2.href = URL.createObjectURL(data);
答案 0 :(得分:1)
你忘了在模板中反复使用 sportsDataPlayer 的周围双引号
template: "<a class=\"sportsDataPlayer\" onclick=\"window.open('#= FileName#', 'popup', 'width=310,height=230,scrollbars=yes,resizable=no')\">#= FileName.substring(FileName.lastIndexOf('/')+1) #</a>"