最佳答案
我真的很难找到一种方法来以我喜欢的方式遍历这个对象。我在这里只使用 Javascript。
首先,这是物体
{
"dialog":
{
"dialog_trunk_1":{
"message": "This is just a JSON Test"
},
"dialog_trunk_2":{
"message": "and a test of the second message"
},
"dialog_trunk_3":
{
"message": "This is a test of a bit longer text. Hopefully this will at the very least create 3 lines and trigger us to go on to another box. So we can test multi-box functionality, too."
}
}
}
现在,我只是尝试通过一些基本的方法来访问这个对象上的每个对话框。在理想情况下,我希望循环遍历该对象,并为每个主干显示它的 message
值。
我曾经尝试使用 for 循环动态地生成氮对话框主干的名称/编号,但是我不能使用对象名称的字符串访问该对象,所以我不确定从这里开始要做什么。