Home Web Front-end JS Tutorial Using json to implement ajax data transmission method

Using json to implement ajax data transmission method

Apr 02, 2018 pm 01:51 PM
ajax javascript data transmission

This time I bring to you, what are the precautions for using json to implement ajax data transmission. The following is a practical case, let's take a look.

JSON(JavaScript Object Notation) is a lightweight data exchange format. It is based on a subset of ECMAScript. JSON uses a completely language-independent text format, but also uses conventions similar to the C language family (including C, C++, C#, Java, JavaScript, Perl, Python, etc.). These properties make JSON an ideal data exchange language. It is easy for humans to read and write, and it is also easy for machines to parse and generate (generally used to increase network transmission rates).

Json simply means objects and arrays in JavaScript, so these two structures are objects and arrays. Various complex structures can be expressed through these two structures.

1. Object: The object is represented in js as the content enclosed by "{}", and the data structure is the key-value pair structure of {key: value, key: value,...}, in Object-oriented In the language, key is the attribute of the object, and value is the corresponding attribute value, so it is easy to understand. The value method is object.key to obtain the attribute value. The type of this attribute value can be number, String, array, and object.

2. Array: The array in js is the content enclosed by square brackets "[]". The data structure is ["java", "javascript", "vb",...], and the value method is As in all languages, using index acquisition, the type of field value can be numbers, strings, arrays, or objects.

Complex data structures can be combined through the two structures of objects and arrays.

You need to import the json.jar package before using JSON

Transfer a single object:

Create a new one servlet

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

package com.itnba.maya.a;

import java.io.IOException;

import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import org.json.JSONObject;

/**

 * Servlet implementation class C

 */

@WebServlet("/C")

public class extends HttpServlet {

 private static final long serialVersionUID = 1L;

 /**

  * @see HttpServlet#HttpServlet()

  */

 public C() {

  super();

  // TODO Auto-generated constructor stub

 }

 /**

  * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)

  */

 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

  request.setCharacterEncoding("utf-8");

  response.setCharacterEncoding("utf-8");

  //模拟从数据库中查处

  Dog a=new Dog();

  a.setName("小黄");

  a.setAge(5);

  a.setZl("哈士奇");

  JSONObject obj=new JSONObject();

  obj.put("name", a.getName());

  obj.put("age", a.getAge());

  obj.put("zl", a.getZl());

  JSONObject bb=new JSONObject();

  bb.put("obj", obj);

  response.getWriter().append(bb.toString());

 }

 /**

  * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)

  */

 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

  // TODO Auto-generated method stub

  doGet(request, response);

 }

}

Copy after login

The effect is as follows:

jsp page

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

<%@ page language="java" contentType="text/html; charset=utf-8"

 pageEncoding="utf-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>Insert title here</title>

<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>

<script type="text/javascript">

$(document).ready(function(){

 $("#k").click(function(){

  $.ajax({

   url:"C",

   data:{},

   type:"POST",

   dataType:"JSON",

   success:function(httpdata){

    $("#x").append("<li>"+httpdata.obj.name+"</li>");

    $("#x").append("<li>"+httpdata.obj.age+"</li>");

    $("#x").append("<li>"+httpdata.obj.zl+"</li>")

   }

  })

 });

});

</script>

</head>

<body>

<span id="k">查看</span>

<h1>

<ul id="x">

</ul></h1>

</body>

</html>

Copy after login

The effect is as follows:

Transfer collection or array:

servlet:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

package com.itnba.maya.a;

import java.io.IOException;

import java.util.ArrayList;

import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import org.json.JSONArray;

import org.json.JSONObject;

/**

 * Servlet implementation class D

 */

@WebServlet("/D")

public class extends HttpServlet {

 private static final long serialVersionUID = 1L;

 /**

  * @see HttpServlet#HttpServlet()

  */

 public D() {

  super();

  // TODO Auto-generated constructor stub

 }

 /**

  * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)

  */

 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

  request.setCharacterEncoding("utf-8");

  response.setCharacterEncoding("utf-8");

  //模拟从数据库中查出

  Dog a1=new Dog();

  a1.setName("小黄");

  a1.setAge(5);

  a1.setZl("哈士奇");

  Dog a2=new Dog();

  a2.setName("中黄");

  a2.setAge(6);

  a2.setZl("泰迪");

  Dog a3=new Dog();

  a3.setName("大黄");

  a3.setAge(7);

  a3.setZl("京巴");

  ArrayList<Dog> list=new ArrayList<Dog>();

  list.add(a1);

  list.add(a2);

  list.add(a3);

  JSONArray arr= new JSONArray();

  //遍历集合

  for(Dog d:list){

   JSONObject obj=new JSONObject();

   obj.put("name", d.getName());

   obj.put("age", d.getAge());

   obj.put("zl", d.getZl());

   arr.put(obj);

  }

  response.getWriter().append(arr.toString());

 }

 /**

  * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)

  */

 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

  // TODO Auto-generated method stub

  doGet(request, response);

 }

}

Copy after login

The effect is as follows:

jsp page:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

<%@ page language="java" contentType="text/html; charset=utf-8"

 pageEncoding="utf-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>Insert title here</title>

<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>

<script type="text/javascript">

$(document).ready(function(){

 $("#k").click(function(){

  $.ajax({

   url:"D",

   data:{},

   type:"POST",

   dataType:"JSON",

   success:function(httpdata){

    for(var i=0;i<httpdata.length;i++){

     var n=httpdata[i].name

     var a=httpdata[i].age

     var z=httpdata[i].zl

     var tr="<tr>"

      tr+="<td>"+n+"</td>"

      tr+="<td>"+a+"</td>"

      tr+="<td>"+z+"</td>"

      tr+="</tr>"

      $("#x").append(tr)

    

   }

  })

 });

});

</script>

</head>

<body>

<span id="k">查看</span>

<h1>

<table width="100%" id="x" border="1px">

</table>

</h1>

</body>

</html>

Copy after login

The effect is as follows:

I believe you have mastered the method after reading the case in this article, more Please pay attention to other related articles on the php Chinese website!

Recommended reading:

Ajax directly implements the steps to like the function

What are the front-end and back-end? ajax interaction method

The above is the detailed content of Using json to implement ajax data transmission method. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the 403 error encountered by jQuery AJAX request How to solve the 403 error encountered by jQuery AJAX request Feb 20, 2024 am 10:07 AM

Title: Methods and code examples to resolve 403 errors in jQuery AJAX requests. The 403 error refers to a request that the server prohibits access to a resource. This error usually occurs because the request lacks permissions or is rejected by the server. When making jQueryAJAX requests, you sometimes encounter this situation. This article will introduce how to solve this problem and provide code examples. Solution: Check permissions: First ensure that the requested URL address is correct and verify that you have sufficient permissions to access the resource.

How to solve jQuery AJAX request 403 error How to solve jQuery AJAX request 403 error Feb 19, 2024 pm 05:55 PM

jQuery is a popular JavaScript library used to simplify client-side development. AJAX is a technology that sends asynchronous requests and interacts with the server without reloading the entire web page. However, when using jQuery to make AJAX requests, you sometimes encounter 403 errors. 403 errors are usually server-denied access errors, possibly due to security policy or permission issues. In this article, we will discuss how to resolve jQueryAJAX request encountering 403 error

PHP and Ajax: Building an autocomplete suggestion engine PHP and Ajax: Building an autocomplete suggestion engine Jun 02, 2024 pm 08:39 PM

Build an autocomplete suggestion engine using PHP and Ajax: Server-side script: handles Ajax requests and returns suggestions (autocomplete.php). Client script: Send Ajax request and display suggestions (autocomplete.js). Practical case: Include script in HTML page and specify search-input element identifier.

How to solve the problem of jQuery AJAX error 403? How to solve the problem of jQuery AJAX error 403? Feb 23, 2024 pm 04:27 PM

How to solve the problem of jQueryAJAX error 403? When developing web applications, jQuery is often used to send asynchronous requests. However, sometimes you may encounter error code 403 when using jQueryAJAX, indicating that access is forbidden by the server. This is usually caused by server-side security settings, but there are ways to work around it. This article will introduce how to solve the problem of jQueryAJAX error 403 and provide specific code examples. 1. to make

How to get variables from PHP method using Ajax? How to get variables from PHP method using Ajax? Mar 09, 2024 pm 05:36 PM

Using Ajax to obtain variables from PHP methods is a common scenario in web development. Through Ajax, the page can be dynamically obtained without refreshing the data. In this article, we will introduce how to use Ajax to get variables from PHP methods, and provide specific code examples. First, we need to write a PHP file to handle the Ajax request and return the required variables. Here is sample code for a simple PHP file getData.php:

How to transfer all data between two iPhones Detailed explanation: How to migrate data from old phones How to transfer all data between two iPhones Detailed explanation: How to migrate data from old phones Mar 18, 2024 pm 06:31 PM

When many friends change their Apple phones, they want to import all the data in the old phone to the new phone. In theory, it is completely feasible, but in practice, it is impossible to &quot;transfer all&quot; the data. This issue's article List several ways to &quot;transfer part of the data&quot;. 1. iTunes is a pre-installed software on Apple mobile phones. It can be used to migrate all data in old mobile phones, but it needs to be used in conjunction with a computer. The migration can be completed by installing iTunes on the computer, then connecting the phone and computer via a data cable, using iTunes to back up the apps and data in the phone, and finally restoring the backup to the new Apple phone. 2. iCloudiCloud is Apple’s exclusive “cloud space” tool. You can log in to your old phone first.

PHP vs. Ajax: Solutions for creating dynamically loaded content PHP vs. Ajax: Solutions for creating dynamically loaded content Jun 06, 2024 pm 01:12 PM

Ajax (Asynchronous JavaScript and XML) allows adding dynamic content without reloading the page. Using PHP and Ajax, you can dynamically load a product list: HTML creates a page with a container element, and the Ajax request adds the data to that element after loading it. JavaScript uses Ajax to send a request to the server through XMLHttpRequest to obtain product data in JSON format from the server. PHP uses MySQL to query product data from the database and encode it into JSON format. JavaScript parses the JSON data and displays it in the page container. Clicking the button triggers an Ajax request to load the product list.

PHP and Ajax: Ways to Improve Ajax Security PHP and Ajax: Ways to Improve Ajax Security Jun 01, 2024 am 09:34 AM

In order to improve Ajax security, there are several methods: CSRF protection: generate a token and send it to the client, add it to the server side in the request for verification. XSS protection: Use htmlspecialchars() to filter input to prevent malicious script injection. Content-Security-Policy header: Restrict the loading of malicious resources and specify the sources from which scripts and style sheets are allowed to be loaded. Validate server-side input: Validate input received from Ajax requests to prevent attackers from exploiting input vulnerabilities. Use secure Ajax libraries: Take advantage of automatic CSRF protection modules provided by libraries such as jQuery.

See all articles