如何在角2读取(来自同一个目录)XML文件(How do I read a xml file(

2019-10-29 18:14发布

我试图从2角一个XML文件中读取数据。

下面是我想(对论坛的建议)的代码。

 constructor(private http: Http) {

        this.http.get('config.xml')
                .subscribe(res => console.log(res));

      }

但我得到404错误的文件。

有我丢失的东西。

感谢帮助。

Answer 1:

我前一阵子有同样的问题,我通过将文件中的资产文件夹中解决它

constructor(private http: Http) {

    this.http.get('assets/config.xml')
            .subscribe(res => console.log(res));

}

这应该解决您的问题



文章来源: How do I read a xml file(from same directory) in Angular 2
标签: xml angular