本文介绍了读取angular2中的xml文件数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Angular2项目中,我有一个xml文件,其中包含有关雇员的所有信息.我需要从该xml文件中读取员工数据并显示在我的组件模板中.

In the Angular2 project, I have one xml file that contains all information about an employee. i need to read employee data from that xml file and display in my component template.

如何使用http服务读取xml数据?

推荐答案

要进行解析,您可以尝试使用xml2js: https://github.com/Leonidas-from-XIV/node-xml2js .

For parsing you can try with xml2js: https://github.com/Leonidas-from-XIV/node-xml2js.

检查其他答案:以角度2解析XML数据

简而言之:

import { parseString } from 'xml2js';
/* ... */
let xml = "<root>Hello xml2js!</root>"
parseString(xml, function (err, result) {
   console.dir(result);
});

这篇关于读取angular2中的xml文件数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 05:53