The problem that the foreground JS object transforms the Java object in the background

Source: Internet
Author: User

In the development project many times to encounter the foreground JS object in the background to transform the Java object, below for everyone to introduce the next front JS object to the background Java objects, interested friends can understand the next

The recent project development process, many times encountered the front desk JS object in the background to transform the Java object problem.    Record the procedure to be used.    In short, it is in the foreground with the Json.stringify () method of the JS object into a JS string, the background to receive the JSON string and convert it to JavaBean.  Foreground code: The code is as follows: var data = {};  Data.id = $ (' #id '). Val ();    data.msg = $ (' #msg '). Val (); Submit Data $.post (ContextPath + '/xxx.do? ')  +new Date (). GetTime (), {data:JSON.stringify (data)},function (result) {alert (result);    }); Background code: The code is as follows: @RequestMapping ("/xxx") public void Save (httpservletresponse response,string data) {if (! Stringutils.isempty (data) {//json string converted to JavaBean msg msg = (msg) jsonobject.tobean (data),  Msg.class); ...} }

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.