我想知道是否可以将JSON反序列化为javascript中的SObject列表?
这是我的JSON:
{label: 'Id', fieldName: 'id', type: 'Number'},{label: 'Agency', fieldName: 'agency', type: 'Text'},{label: 'Csat', fieldName: 'csat', type: 'Number'},{label: 'Date', fieldName: 'date', type: 'Date'},{label: 'Amount', fieldName: 'amount', type: 'Decimal'},{label: 'Recontact', fieldName: 'recontact', type: 'Boolean'},{label: 'Logo', fieldName: 'logo', type: 'Text'}
我想目前使用JSON.parse()方法是不可能的。 最后,我需要得到这样的东西:
[
{label: 'Opportunity name', fieldName: 'opportunityName', type: 'text'},
{label: 'Confidence', fieldName: 'confidence', type: 'percent'},
{label: 'Amount', fieldName: 'amount', type: 'currency', typeAttributes: { currencyCode: 'EUR'}},
{label: 'Contact Email', fieldName: 'contact', type: 'email'},
{label: 'Contact Phone', fieldName: 'phone', type: 'phone'}
]
如果有必要,我可以修改我的JSON。
你能帮帮我吗? 的Aurelien