i want to know that how can i export pdf file from angularjs. I've exported excel file and it is working fine.
following is code for excel
view.html
<button ng-click="vm.exportData()" class="btn btn-info"><i class="glyphicon glyphicon-download"></i> Download as pdf</button>
controller.js
$scope.exportData = function () {
debugger;
var blob = new Blob([document.getElementById('export').innerHTML], {
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8"
});
window.saveAs(blob, "Report.xls");
},
how to do
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8" <======this linein pdf?
Thanks in advance :)
'type': 'application/pdf'