我无法让nativescript-videorecorder在我的应用中正常工作。
我已经安装了插件,并使用了github https://github.com/triniwiz/nativescript-videorecorder上给出的代码作为打字稿。我创建了一个简单的HTML ui,并尝试调用一个函数来打开相机来录制视频。但是它不起作用
对于app.component.html,我使用了标签<Image src="videoCam" (tap)="onCam()">
对于app.component.ts,我使用了以下代码
import { VideoRecorder, Options as VideoRecorderOptions } from 'nativescript-videorecorder';
@Component({
moduleId: module.id,
selector: "ns-app",
templateUrl: "app.component.html"
})
export class AppComponent {
export class AppComponent {
onCam() {
const options: VideoRecorderOptions = {
hd: true
saveToGallery: true
};
const videorecorder = new VideoRecorder(options);
videorecorder.record().then((data) => {
console.log(data.file)
}).catch((err) => {
console.log(err)
});
}
}
要使它正常工作,我缺少什么吗?