我是 Ionic 2 的初学者,我想知道您如何使用 Ionic 框架中的 Photoviewer 功能。(可在此处获得:官方网站)
它说 :
用法
import { PhotoViewer } from '@ionic-native/photo-viewer';
constructor(private photoViewer: PhotoViewer) { }
...
this.photoViewer.show('https://example.com/path/to/image.jpg');
this.photoViewer.show('https://example.com/path/to/image.jpg', 'My image title', {share: false});
但是我需要把它放在哪里?在一个函数中?该函数将如何被调用?
谢谢大家。