我想为json字符串添加额外的属性而不将String转换为任何对象格式(我现在正在进行转换,这需要30毫秒的时间,我想避免转换时间),所以有什么方法可以添加属性到json字符串而不将有效负载转换为任何对象格式?
例如:
{
"type": "some type",
"data": [{
"email": "email id",
"content": {
"some filed": "filed value"
}
}]
}
我需要添加新字段后的有效负载,例如。,
{
"type": "some type",
"data": [{
"email": "email id",
"content": {
"some filed": "filed value",
"new field": "New value"
}
}]
}