我正在使用Electron和Angular 4开发应用程序。我想在单击按钮选择文件夹时显示对话框,但电子API存在问题:
我见过很多人有同样的问题,但我找不到解决方法来解决这个问题。我尝试通过添加需要 fs 模块的脚本来修改angular-cli配置,但它也失败了......
我的组件如下所示:
import { Component, OnInit } from '@angular/core';
import { dialog } from 'electron';
@Component({
selector: 'app-photos',
templateUrl: './photos.component.html'
})
export class PhotosComponent implements OnInit {
private path = '';
private photos = ['A', 'B', 'C'];
constructor() { }
ngOnInit() {
}
openFolderSelector() {
dialog.showOpenDialog({ properties: ['openDirectory'] }, (filepaths) => {
console.log(filepaths);
});
}
}
有人让它发挥作用吗?
感谢您的帮助!