JSON concatenation string must be __js with double quotes

Source: Internet
Author: User


Action

Long num = 10L;
String jsonstr = "{\" long\ ":" + num + "}";
Outputjson (JSONSTR);
The JSONSTR string is output to the foreground, which is parsed by the foreground in JSON format.


If it's a string,

String result = "XY";

String jsonstr = "{\" long\ ": \" "+ num +" \ "}";


JSP

$.ajax ({
URL: "...",
datatype: "JSON",
Success:function (data) {
alert (Data.long);
}
});


Note the point:

Watch out for one.
Cannot use single quotation mark "{' Long '" + num +} ", the foreground cannot parse.

Pay attention to two.
When using $.ajax to accept JSON, don't forget to write Datatype:json. I used to be used to $.getjson, so I sometimes forget to add.

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.