我想知道。是否有任何選項來實現打印/連接打印機 離子2。是否有任何cordova插件打印。 我碰到這個插件。從ionic2訪問打印機
關於這將是useful.Is有什麼辦法來訪問離子2第三方庫的任何幫助/信息。??
我想知道。是否有任何選項來實現打印/連接打印機 離子2。是否有任何cordova插件打印。 我碰到這個插件。從ionic2訪問打印機
關於這將是useful.Is有什麼辦法來訪問離子2第三方庫的任何幫助/信息。??
科爾多瓦打印插件,
cordova plugin add cordova-plugin-printer
科爾多瓦插件添加科爾多瓦 - 插件打印機 或特定版本:
cordova plugin add [email protected]
然後執行:
cordova build
在Ionic 2中,您可以將Cordonic打印機插件使用Ionic Native打印到PDF文件或真實紙張上。遵循的步驟非常簡單。 首先添加科爾多瓦插件印刷與
cordova plugin add https://github.com/katzer/cordova-plugin-printer.git
下一頁導入類
import {Printer, PrintOptions} from 'ionic-native';
然後,此方法添加到您的類
print(){
Printer.isAvailable().then(function(){
Printer.print("https://www.techiediaries.com").then(function(){
alert("printing done successfully !");
},function(){
alert("Error while printing !");
});
}, function(){
alert('Error : printing is unavailable on your device ');
});
}
要測試的方法添加一個按鈕,您的模板
<button class="button" (click)="print()">Print</button>
您可以找到完整的教程here
此插件支持哪種類型的打印機?你可以詳細說明如何實現這一點。 –
https://github.com/katzer/cordova-plugin-printer/blob/example/images/print-ios.png –
插件及其方法在deviceready事件觸發之前不可用。 document.addEventListener('deviceready',function(){ // cordova.plugins.printer現在可用 },false); –