admin管理员组文章数量:1344332
I am trying to parse below xml using fast-xml-parser and typescript code. I see that when the value contains a hyphen, it is being treated as string in the output. But when the value looks like plain number, output is not in string format. I need this to be handled in a way that any value coming inside of type=text should be parsed as string. In the given example 789555 should be coming as string similar to 123-456. I went through the doc and tried few steps with tagValueProcessor but did not give the intended result. I do not want to alter format of any other attribute except for the mentioned condition. Any suggestion would be helpful.
private xmlParser = new XMLParser({
ignoreAttributes: false,
attributeNamePrefix: '',
removeNSPrefix: true,
commentPropName: '#comment'
})
xmlParser.parse(requestxml)
Input
<u5:items>
<u5:item name="amz.myid">
<u6:values>
<u6:value type="Text" isNegative="false">123-456</u6:value>
<u6:value type="Text" isNegative="false">789555</u6:value>
</u6:values>
</u5:item>
</u5:items>
Actual output
{
"items": {
"item": {
"values": {
"value": [
{
"#text": "123-456",
"type": "Text",
"isNegative": "false"
},
{
"#text": 789555, //this needs to be a string
"type": "Text",
"isNegative": "false"
}
],
"#text": "/u6:values>"
},
"name": "amz.myid"
}
}
}
Expected Output
{
"items": {
"item": {
"values": {
"value": [
{
"#text": "123-456",
"type": "Text",
"isNegative": "false"
},
{
"#text": "789555",
"type": "Text",
"isNegative": "false"
}
],
"#text": "/u6:values>"
},
"name": "amz.myid"
}
}
}
I am trying to parse below xml using fast-xml-parser and typescript code. I see that when the value contains a hyphen, it is being treated as string in the output. But when the value looks like plain number, output is not in string format. I need this to be handled in a way that any value coming inside of type=text should be parsed as string. In the given example 789555 should be coming as string similar to 123-456. I went through the doc and tried few steps with tagValueProcessor but did not give the intended result. I do not want to alter format of any other attribute except for the mentioned condition. Any suggestion would be helpful.
private xmlParser = new XMLParser({
ignoreAttributes: false,
attributeNamePrefix: '',
removeNSPrefix: true,
commentPropName: '#comment'
})
xmlParser.parse(requestxml)
Input
<u5:items>
<u5:item name="amz.myid">
<u6:values>
<u6:value type="Text" isNegative="false">123-456</u6:value>
<u6:value type="Text" isNegative="false">789555</u6:value>
</u6:values>
</u5:item>
</u5:items>
Actual output
{
"items": {
"item": {
"values": {
"value": [
{
"#text": "123-456",
"type": "Text",
"isNegative": "false"
},
{
"#text": 789555, //this needs to be a string
"type": "Text",
"isNegative": "false"
}
],
"#text": "/u6:values>"
},
"name": "amz.myid"
}
}
}
Expected Output
{
"items": {
"item": {
"values": {
"value": [
{
"#text": "123-456",
"type": "Text",
"isNegative": "false"
},
{
"#text": "789555",
"type": "Text",
"isNegative": "false"
}
],
"#text": "/u6:values>"
},
"name": "amz.myid"
}
}
}
Share
Improve this question
asked yesterday
Pavan KumarPavan Kumar
15511 bronze badges
2
- What version of fast-xml-parser are you using? – Matt Kantor Commented yesterday
- You can use the parser option alwaysCreateTextNode: true – Hermann12 Commented 1 hour ago
1 Answer
Reset to default 0Assuming you are using a recent version of fast-xml-parser, you can set the parseTagValue
option to false
to disable number parsing for tag values.
本文标签:
版权声明:本文标题:typescript - Not able to parse text correctly to string using fast-xml-parser, instead getting parsed as number - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799841a2541106.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论