Json value passing and ajax receiving, and jsonajax receiving

Source: Internet
Author: User

Json value passing and ajax receiving, and jsonajax receiving

At the beginning, I started to enter the company and started to work on projects. Now a month has passed and I am getting more and more comfortable. Here is how to transfer the value of json to the front-end and receive the value from the front-end ajax, and write it down to myself and share it with you.

This is the interaction between two different types of json and ajax data (set and Class Object)

JsonConfig jsonConfig = new JsonConfig (); // lenient
JsonConfig. setCycleDetectionStrategy (CycleDetectionStrategy. LENIENT );
JSONArray json = JSONArray. fromObject (listPm, jsonConfig );
OutJSONData (json );

Blog B = (Blog) bgdao. findBlog (Integer. parseInt (id ));
B. setBbsCenterStr (new String (B. getBbsCenter ()));
JSONArray json = JSONArray. fromObject (B );
OutJSONData (json );

Ajax reception:

DataType: "json ",
Success: function (data ){
Var crmHtmlg = '';
$. Each (data, function (I, comment ){
CrmHtmlg + = '<tr>'
+ '<Td colspan = "2" style = "text-align: center; color: black; font-size: 18px; font-weight: bold;">' + comment. bbsTitle + '</td>'
+ '</Tr>'
});
Certificate ('{bowenchakan'{.html (crmHtmlg );

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.