我想使用javascript文件对象但无法使用,因为离子原生文件对象已经有相同的键文件
请看下面的例子:
import { File } from '@ionic-native/file';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage{
constructor(private file: File) { }
test(buf){
let file = new File([buf],'test.txt',{type:'text/plain'})
//above javascript File Object is determined as File of @ionic-native/file
}
}
答案 0 :(得分:0)
回答我自己的问题:
我们可以使用别名中的别名导入下面的行以获取此行。
import { File as ionicFile } from '@ionic-native/file';