2

我有一个 xml,其中标签名称包含冒号(:) 它看起来像这样:

<samlp:Response>
data
</samlp:Response>

我正在使用以下代码将此 xml 解析为 json 但无法使用它,因为标签名称包含冒号。

var xml2js = require('xml2js');
var parser = new xml2js.Parser();
var fs = require('fs');

    fs.readFile(
  filePath,
  function(err,data){
    if(!err){
      parser.parseString(data, function (err, result) {
        //Getting a linter warning/error at this point
        console.log(result.samlp:Response);
      });
    }else{
      callback('error while parsing assertion'+err);
    }
  }
);

};

错误:

events.js:161
      throw er; // Unhandled 'error' event
      ^

TypeError: Cannot read property 'Response' of undefined

如何在不更改 xml 内容的情况下成功解析此 XML?

在此处输入图像描述

4

2 回答 2

5

xml2js允许您通过在配置选项中添加stripPrefixtagNameProcessors数组来明确设置 XML 命名空间删除。

const xml2js = require('xml2js')
const processors = xml2js.processors
const xmlParser = xml2js.Parser({
  tagNameProcessors: [processors.stripPrefix]
})
const fs = require('fs')

fs.readFile(filepath, 'utf8', (err, data) => {
  if (err) {
    //handle error
    console.log(err)
  } else {
    xmlParser.parseString(data, (err, result) => {
      if (err) {
        // handle error    
        console.log(err) 
      } else {
        console.log(result)
      }
    })  
  }
})
于 2017-04-09T21:36:36.983 回答
0

我喜欢接受的答案,但请记住,您可以使用其密钥访问属性。

object['property']

所以在你的情况下

result['samlp:Response']
于 2020-05-04T22:06:21.720 回答