.controller(' MyCtrl',function($ scope,$ cordovaPrinter,){
$scope.print = function() {
console.log('print method here');
var page = document.getElementById('print_id');
if($cordovaPrinter.isAvailable()) {
$cordovaPrinter.print(page, 'Document.html', function () {
alert('printing finished or canceled')
});
}
}
给我关于此错误的任何建议。 感谢
答案 0 :(得分:0)
我面临同样的错误。
我使用以下命令重新安装插件:cordova plugin rm cordova-plugin-printer
并使用:cordova plugin add https://github.com/katzer/cordova-plugin-printer.git
重新安装
然后最后是cordova build