I'm trying to create a moule where the user can upload an excel file an get data from the document. I'm using the js-xlsx library. Right now, with the next code, i'm getting the info on the console of my example file as a json:
$scope.ExcelExport= function (event) {
var input = event.target;
var reader = new FileReader();
reader.onload = function(){
var fileData = reader.result;
var wb = XLSX.read(fileData, {type : 'binary'});
wb.SheetNames.forEach(function(sheetName){
var rowObj = XLSX.utils.sheet_to_json(wb.Sheets[sheetName]);
$scope.jsonObj = rowObj;
console.log($scope.jsonObj);
})
};
reader.readAsBinaryString(input.files[0]);
};
I know i have to save the document, but: there's a way to stored the readed info on my console and show it on the html view?
Per example, let's say that my example file have the next data in two columns:
Person | Job |(This is the header) Chuck | Developer| John | Teacher |
And i want to populate a table:
<div class="row">
<div class="col-lg-11">
<form class="form-inline">
<div class="am form-group">
</div>
<div class="container">
<table class="table table-hover">
<thead>
<tr>
<th>Person</th>
<th>Job</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="x in jsonObj">
<th>{{x.Person}}</th>
<th>{{x.Job}}</th>
</tr>
</tbody>
</table>
</div>
</form>
</div>
I'm using angularjs and Javascript.
Thanx in advance!
As charlietfl correctly pointed out, you have to call
$scope.$apply()
whenever you change something outside of angular.As for the error
TypeError: Cannot read property 'charCodeAt' of null
, change:var fileData = reader.result;
to
var fileData = input.result;
Here's how I'd organize this feature.
Your directive:
Your controller:
Then in your html:
Here's a working example on codepen