首先将txt转换为JSON。
const txt = JSON.stringify(`{
ErrorList: [{ 80: 'Prepared' }],
Reference: [
{
'Rule Name': 'Missing 3',
'Rule ID': 1,
'Rule Des': 'Did they provide News ?'
},
{
'Rule Name': 'Missing Zip',
'Rule ID': 2,
'Rule Des': 'Is field ?'
}
],
'Hard Violation': [
{
Violation: 0,
'Initial Servicer': 'BI',
'Total Confirmed': 0,
'Last Date': '05/16/2021'
},
{
Violation: 0,
'Initial Servicer': 'BI',
'Total Confirmed': 3,
'Last Date': '12/19/2019'
}
]
}`);
const obj = JSON.parse(txt);
console.log(obj.Reference);
然后,我试图得到一些值的JSON,我试图打印“引用”里面,但它返回“未定义”,任何朋友可以帮助?
2条答案
按热度按时间a5g8bdjr1#
谢谢你的回复,特别是@ T. J.克劳德
对我来说,最好的方法是创建一个对象,直接执行:
pobjuy322#