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.
我HashMap<Long,String>在 Ajax 调用之一上从服务器返回。如何迭代它以提取键值对?
HashMap<Long,String>
谢谢
将其作为 JSON 对象返回:
{1:"String",5:"Foo"}
在客户端上,您可以使用data[1]和访问元素data[5]。虽然它看起来像一个数组访问,但 JavaScript 会做正确的事情(感谢Felix Kling指出这一点)。
data[1]
data[5]