Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Web 服务所需的这种类型的结构中声明和插入元素。所以我的服务输入是这样的:
data["A"]["12"]="word" (data)["String"]["String"]=(String)
我不知道这是否称为(HashList 或 MapList)我认为它不是多维数组,因为它没有被 0,1 索引....n 我如何声明这种类型的结构?
这只是一个对象:
var data = { A: { '12': 'word' } }
可以使用括号表示法访问或设置 JavaScript 对象的属性,就像在您的示例中一样。
使用对象