我是离子的新手并且已经开始发展它。但是我在安装pdf查看器以查看pdf时遇到了问题。我正在使用插件DocumentViewer并将其导入组件和模块。
import { DocumentViewer} from '@ionic-native/document-viewer'
export class MyApp {
rootPage:any = TabsPage;
constructor(public document: DocumentViewer, platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
statusBar.styleDefault();
splashScreen.hide();
});
}
}
我的页面:
<ion-header>
<ion-navbar>
<ion-title>{{item.text}}</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<h2>Welcome User</h2>
<p>
Great job!
</p>
</ion-content>
但只是它不起作用,我尝试了一些其他的插件,但由于我对离子的了解有限,我无法到达任何地方。我很感激你提供一些帮助,即使你会使用不同的插件或指向可能有帮助的问题或教程。
谢谢:)