我知道他有支援angularjs
但範例並非angularjs 4以上版本
另外是否可以使用GC.Spread.Excel.IO
var excelIo = new GC.Spread.Excel.IO();
spread = $('#ss').data('workbook');
var excelFile = $(#'fileDemo').files[0];
// excel IO API
excelIo.open(excelFile, function (json) {
var workbookObj = json;
spread.fromJSON(workbookObj);
}, function (e) {
// process error
alert(e.errorMessage);
if (e.errorCode === 2/*noPassword*/ || e.errorCode === 3 /*invalidPassword*/) {
}
});
在angularjs 6中是否可以一樣可使用 |