Detailed explanation of the parsererror error case in JavaScript solution in ajax

Detailed explanation of the parsererror error case in JavaScript solution in ajax

The ultimate way to solve the parsererror error of ajax (the problem of json data transmitted from the background to the front end)

The reason for this problem is that there is a problem with the data transmitted from the background to the front end. Ajax is particularly strict about the format of JSON.

The following is the ajax request that will cause this problem

$.ajax({
type:'get',
url:"{php echo $this->createWebUrl('ajax',array('ac'=>'cunByXiangId'))}",
data:{id:id},

  dataType:'json', //This is the key to the problem success:function(obj){

},error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.status);
alert(XMLHttpRequest.readyState);
alert(textStatus);
}
});

The main problem lies in the line of code dataType:'json', which means that the received data is in json format. At this time, we only need to delete this code and we will receive the string format.

The data is then converted into json format. The following is the code

$.ajax({
type:'get',
url:"{php echo $this->createWebUrl('ajax',array('ac'=>'cunByXiangId'))}",
data:{id:id},
success:function(obj){
obj=eval('('+obj+')');//This code converts the string into json format},error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.status);
alert(XMLHttpRequest.readyState);
alert(textStatus);
}
});

This is the end of this article about JavaScript solving parsererror errors in ajax. For more relevant JavaScript solving parsererror errors in ajax, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Ajax solves cross-domain problem by setting CORS response header to achieve cross-domain case study
  • Three-level linkage provincial and municipal ajax code
  • JSON, AJAX, Maven Basics
  • Ajax login verification implementation code
  • Ajax realizes the linkage between provinces, cities and districts
  • jQuery+Ajax to achieve simple paging effect
  • Preliminary implementation of Ajax (using vscode+node.js+express framework)
  • How to use AJAX to obtain Django backend data

<<:  How to open ports to the outside world in Alibaba Cloud Centos7.X

>>:  Detailed example of using case statement in MySQL stored procedure

Recommend

mysql delete multi-table connection deletion function

Deleting a single table: DELETE FROM tableName WH...

How to modify the root password of mysql in docker

The first step is to create a mysql container doc...

Implementation of postcss-pxtorem mobile adaptation

Execute the command to install the plugin postcss...

Getting Started Tutorial on GDB in Linux

Preface gdb is a very useful debugging tool under...

Detailed steps to install MySQL 5.6 X64 version under Linux

environment: 1. CentOS6.5 X64 2.mysql-5.6.34-linu...

How to embed other web pages in a web page using iframe

How to use iframe: Copy code The code is as follo...

The difference between shtml and html

Shtml and asp are similar. In files named shtml, s...

Teach you how to install docker on windows 10 home edition

When I wrote the Redis book and the Spring Cloud ...

Detailed steps to install and uninstall Apache (httpd) service on centos 7

uninstall First, confirm whether it has been inst...

How to install Zookeeper service on Linux system

1. Create the /usr/local/services/zookeeper folde...

Detailed description of common events and methods of html text

Event Description onactivate: Fired when the objec...

Div exceeds hidden text and hides the CSS code beyond the div part

Before hiding: After hiding: CSS: Copy code The co...

HTML tag default style arrangement

html, address,blockquote,body, dd, div,dl, dt, fie...

...

Summarize several common ranking problems in MySQL

Preface: In some application scenarios, we often ...