Ajax responseText parses json data case study

Ajax responseText parses json data case study

Solve the problem that the responseText returned by the server after ajax processing is JSON data.

First, the contents of the file in json format are as follows:

{
    "city":"ShangHai",  
    "telephone":"123456789"
}

Second, the json data returned by the server is the above content in responseText. Now we need to get it out. There are two ways:

Method 1:

var json = JSON.parse(request.responseText);  

alert(json.city);

Method 2:

var result = request.responseText;  

var jsonObject = eval("("+result+")");  

alert(jsonObject.telephone);

This is the end of this article about the detailed case of Ajax responseText parsing json data. For more related Ajax responseText parsing json data content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • The responseText in Ajax returns a page instead of a value
  • How to solve the problem of garbled responseText of ajax
  • JSON, AJAX, Maven Basics
  • Ajax login verification implementation code
  • Ajax realizes the linkage between provinces, cities and districts
  • Preliminary implementation of Ajax (using vscode+node.js+express framework)

<<:  Detailed explanation of the installation and configuration process of mysql8.018 on linux

>>:  Nginx prohibits direct access via IP and redirects to a custom 500 page

Recommend

Front-end JavaScript Promise

Table of contents 1. What is Promise 2. Basic usa...

The difference between html form submission action and url jump to actiond

The action of the form is different from the URL j...

Detailed explanation of how Nginx works

How Nginx works Nginx consists of a core and modu...

Tutorial on installing php5, uninstalling php, and installing php7 on centos

First, install PHP5 very simple yum install php T...

Detailed explanation of the error problem of case when statement

Preface In the MySQL database, sometimes we use j...

Detailed explanation of MySQL InnoDB secondary index sorting example

Sorting Problem I recently read "45 Lectures...

Detailed explanation of where the images pulled by docker are stored

The commands pulled by docker are stored in the /...

Details on using regular expressions in MySQL

Table of contents 1. Introduction 2. Prepare a pr...

MySQL 5.7.17 latest installation tutorial with pictures and text

mysql-5.7.17-winx64 is the latest version of MySQ...

How to choose between MySQL CHAR and VARCHAR

Table of contents VARCHAR and CHAR Types Conclusi...

12 Javascript table controls (DataGrid) are sorted out

When the DataSource property of a DataGrid control...

Analysis of different MySQL table sorting rules error

The following error is reported when MySQL joins ...

Docker MQTT installation and use tutorial

Introduction to MQTT MQTT (Message Queuing Teleme...