csvDownload Uncaught SyntaxError:意外的标记<。
示例原型 http://jsfiddle.net/khfL1jsh/
未捕获的SyntaxError:意外的令牌<不工作 http://jsfiddle.net/2s79mnq5/
template: function csvDownload() {
//return "testing" + that.FinancialDocuments.ImageType(model);
<a id=\"sportsDataPlayer\" download=\"download.csv\" type=\"text\/csv\">#= 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 :(得分:0)
我已经修改了一些JS文件,现在至少没有触发错误。
看看:
func number(for plot: CPTPlot, field: UInt, record: UInt) -> Any? {
switch CPTScatterPlotField(rawValue: Int(field))! {
case .X:
let xVal = self.xValues[Int(record)]
return xVal
case .Y:
let yVal = self.yValues[Int(record)]
return yVal
}
}
这是更新的小提琴: http://jsfiddle.net/2s79mnq5/#&togetherjs=CVveJp1NKp