Why is the error method always executed when the jQuery plugin AjaxFileUpload implements ajax file upload?

Source: Internet
Author: User

Today, when I used the jQuery plug-in AjaxFileUpload to upload ajax files, I encountered a problem,


The error is always executed and the succes method cannot be executed. Tracking the source code of ajaxfileupload. js:



If (type = "json") eval ("data =" + data); is executed, an exception is thrown, as a result, status = "error" is always executed when an exception is handled.

Online query, I learned that the eval function is used to execute a piece of js Code, instead of reverse decoding the json string eval ("data =" + data) as I thought ); the value of data is assigned to the data parameter,

However, when I return a simple string, such as "true", to the page, an exception is thrown. Last changedEval ("data = \" "+ data + "\"");The data to be returned is enclosed in double quotation marks as a string and then assigned to data.

Finally succeeded.


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.