私は 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"に割り当てます)。上記のタスクを達成するために勉強するための指針はありますか? どんな助けでも大歓迎です!