我需要读取xls文件并将其数据显示在客户端上,然后如果用户选择,则将其上传到服务器。
我到现在为止尝试过:
var f = document.getElementById('file').files[0],
r = new FileReader();
r.onloadend = function(e){
var data = e.target.result; console.log(data);
//send you binary data via $http or $resource or do anything else with it
}
r.readAsDataURL(f);
}
但现在我得到的数据为:
data:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;base ....\
这是一个可下载的文件。
How can i read the data of a file on the client side using Angularjs and then selectively upload and save it onto the server.