服务器返回JSON数据使用
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
android客户端或者jsp页面请求服务器数据,服务器先在数据库中将相应的数据取出来,放进JSONArray或者JSONObject中,并将其返回。JSONObject 对象toString()之后会自动的变成
{"key":value}这种格式,JSONArray对象toString()之后会自动的变成[{"key":value},{"key":value}]这种格式,客户端只要解析字符串就可以了,
---->在android客户端可以使用JSONArray(String source)构造JSONArray对象,
然后通过该对象的
JSONArray getJSONArray(int index) Get the JSONArray associated with an index.获得该对象中的JSONArray
JSONObject getJSONObject(int index) Get the JSONObject associated with an index.获得该对象中的JSONObject
最后是通过JSONObject的相应的方法getXxx()获得想要的数据
---->在JSP页面中可以使用js读取JSON数据(JSON语法是JS语法的子集,用JS可以非常方便的读取解析JSON)
如:
{"person1":[{"id":1,"age":50,"amount":38},{"id":4,"age":62,"amount":107}],"person2":[{"id":7,"age":50,"amount":38},{"id":5,"age":62,"amount":107}]}
将如在js中用result接收action中传来的JSON数据格式如上
result.person1[i].age 访问的是result中person1数组中的第i+1个元素的age属性值
{"key":value}这种格式,JSONArray对象toString()之后会自动的变成[{"key":value},{"key":value}]这种格式,客户端只要解析字符串就可以了,
---->在android客户端可以使用JSONArray(String source)构造JSONArray对象,
然后通过该对象的
JSONArray getJSONArray(int index) Get the JSONArray associated with an index.获得该对象中的JSONArray
JSONObject getJSONObject(int index) Get the JSONObject associated with an index.获得该对象中的JSONObject
最后是通过JSONObject的相应的方法getXxx()获得想要的数据
---->在JSP页面中可以使用js读取JSON数据(JSON语法是JS语法的子集,用JS可以非常方便的读取解析JSON)
如:
{"person1":[{"id":1,"age":50,"amount":38},{"id":4,"age":62,"amount":107}],"person2":[{"id":7,"age":50,"amount":38},{"id":5,"age":62,"amount":107}]}
将如在js中用result接收action中传来的JSON数据格式如上
result.person1[i].age 访问的是result中person1数组中的第i+1个元素的age属性值
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)