我们使用angular6和电子进行投影。我想在xxx.html中添加一个按钮,然后单击该按钮将选择一个上传文件,如何获取文件路径?
谢谢...
答案 0 :(得分:0)
我明白了,html:
<input #selectFile type="file" (change)="getPath()"/>
ts:
import {Component, OnInit, ViewChild} from '@angular/core';
@ViewChild("selectFile") selectFile;
let path = this.selectFile.nativeElement.files[0].path;
现在,PATH是我想要的。
在浏览器中,PATH是falsepath。在电子中,PATH是真实路径。