JSON preguntas y respuestas de entrevista
Question: How to receive JSON Data at the Client Side?Answer: • JSON data is received as a string• Calling 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; |
Guardar para repaso
Guarda este elemento en marcadores, marcalo como dificil o agregalo a un conjunto de repaso.
Inicia sesion para guardar marcadores, preguntas dificiles y conjuntos de repaso.
Es util? Si No
Lo mas util segun los usuarios:
- 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.