JSON 面试题与答案
Question: How to receive JSON Data at the Client Side?Answer: JSON data is received as a stringCalling eval() will generate JSON object in JavaScript code var JSONdata = eval(req.responseText); Once you have JSON object, you can use . notation to access its properties var name = JSONdata.name; var address = JSONdata.addresses[3]; var streetname = JSONdata.addresses[3].street; |
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
这有帮助吗? 是 否
用户评价最有帮助的内容:
- Who is the Father of JSON ?
- What is the file extension of JSON?
- What is JSON?
- Why use JSON over XML?
- Explain JSON with php.