我有一个关于使用 jquery ajax 处理 json 请求的查询,
使用 JSON.stringify() 处理 javascript 对象后,我的 json 字符串如下所示:
{"user1":{"hardwork":3,"cooperative":4,"supportive":3,"knowledge":3},
"user2":{"hardwork":5,"cooperative":5,"supportive":3,"knowledge":3}}
假设user1
anduser2
是用户名,对于每个用户,我们拥有categories
每个类别的值。根据需要,我需要将此页面发布到 jsp 页面。另外,我在页面上需要这个字符串keys
和values
来自这个字符串。json
JSP
这个怎么做?
哪个json-java
图书馆合适?
如何在我的 jsp 页面中遍历java/json
对象中的键和值(就像我们在 in 中所做的for in loop
那样javascript
)?
谢谢