我是 CFML 语言的新手,我对 ColdFusion 中的结构和数组有疑问。请注意,我使用的是 openBD CFML 服务器。
我有以下对象(结构):
{
"docs":{
"23_id":{
"content":[
"I am"
]
},
"1_id":{
"content":[
"the most"
]
},
"7_id":{
"content":[
"crap coder"
]
},
"39_id":{
"content":[
"in the whole universe!"
]
}
}
}
问题:我可以将上述对象修改为(如果可能,还保留订单):
{
"docs": [
{
"id": "23_id",
"lola": "I am"
},
{
"id": "1_id",
"lola": "the most"
},
{
"id": "7_id",
"lola": "crap coder"
},
{
"id": "39_id",
"lola": "in the whole universe!"
}
]
}
请注意,我需要分配自定义键(id并分配“lola”而不是“content”)。为了完成上述任务,是否有任何学习指针?任何帮助表示赞赏!