如何使用角度2读取和写入本地文件

时间:2018-01-23 03:14:14

标签: angular typescript filesystems angular2-routing angular5

在角度2中,有没有办法从绝对路径读取/写入文件?
我使用' filesaver '库保存文件,我保存文件
本地采用txt / json格式。
示例:

getUserProfile(data: any) {
    // return observable
    return this.afDatabase.object(`user-profile/${data.uid}`).valueChanges();

}

现在我想读取和编辑/编辑export.json文件。我怎样才能在下次推荐它? 有没有其他方式或有任何好的图书馆可用于这些 操作

1 个答案:

答案 0 :(得分:1)

要阅读您的文件,您可以执行此操作(使用HttpClient)

ABCDABCDABCD

不幸的是你不能使用put / post写入文件,但我可以推荐你' jsonfile'图书馆:https://www.npmjs.com/package/jsonfile

希望它会对你有所帮助!