How to pass Json object from ajax to spring mvc controller?

前端 未结 5 1236
小蘑菇
小蘑菇 2020-12-01 04:48

I am working on SpringMVC, I am passing data from ajax to controller but i got null value in my controller please check my code below

function searchText()
{         


        
相关标签:
5条回答
  • 2020-12-01 05:09

    I hope, You need to include the dataType option,

    dataType: "JSON"
    

    And you could get the form data in controller as below,

     public  @ResponseBody String  getSearchUserProfiles(@RequestParam("pName") String pName ,HttpServletRequest request)
           {
             //here I got null value
           } 
    
    0 讨论(0)
  • 2020-12-01 05:09

    If you can manage to pass your whole json in one query string parameter then you can use rest template on the server side to generate Object from json, but still its not the optimal approach

    0 讨论(0)
  • 2020-12-01 05:13

    Use this method if you dont want to make a class you can directly send JSON without Stringifying. Use Default Content Type. Just Use @RequestParam instead of @RequestBody. @RequestParam Name must be same as in json.

    Ajax Call

    function searchText() {
        var search = {
        "pName" : "bhanu",
        "lName" :"prasad"
        }
        $.ajax({
        type: "POST",
        /*contentType : 'application/json; charset=utf-8',*/ //use Default contentType
        dataType : 'json',
        url: "/gDirecotry/ajax/searchUserProfiles.htm",
        data: search, // Note it is important without stringifying
        success :function(result) {
        // do what ever you want with data
        }
        });
    

    Spring Controller

    RequestMapping(value="/gDirecotry/ajax/searchUserProfiles.htm",method=RequestMethod.POST)
    
       public  @ResponseBody String  getSearchUserProfiles(@RequestParam String pName, @RequestParam String lName) {
           String pNameParameter = pName;
           String lNameParameter = lName;
    
           // your logic next
       }
    
    0 讨论(0)
  • 2020-12-01 05:14

    Hey enjoy the following code.

    Javascript AJAX call

    function searchText() {
       var search = {
          "pName" : "bhanu",
          "lName" :"prasad"
       }
    
       $.ajax({
           type: "POST",
           contentType : 'application/json; charset=utf-8',
           dataType : 'json',
           url: "/gDirecotry/ajax/searchUserProfiles.html",
           data: JSON.stringify(search), // Note it is important
           success :function(result) {
           // do what ever you want with data
           }
       });
    }
    

    Spring controller code

    RequestMapping(value="/gDirecotry/ajax/searchUserProfiles.htm",method=RequestMethod.POST)
    
    public  @ResponseBody String  getSearchUserProfiles(@RequestBody Search search, HttpServletRequest request) {
        String pName = search.getPName();
        String lName = search.getLName();
    
        // your logic next
    }
    

    Following Search class will be as follows

    class Search {
        private String pName;
        private String lName;
    
        // getter and setters for above variables
    }
    

    Advantage of this class is that, in future you can add more variables to this class if needed.
    Eg. if you want to implement sort functionality.

    0 讨论(0)
  • 2020-12-01 05:21
    u take like this 
    var name=$("name").val();
    var email=$("email").val();
    
    var obj = 'name='+name+'&email'+email;
      $.ajax({
       url:"simple.form",
       type:"GET",
       data:obj,
       contentType:"application/json",
       success:function(response){
      alert(response);
      },
      error:function(error){
      alert(error);
      }
    });
    

    spring Controller


    @RequestMapping(value = "simple", method = RequestMethod.GET)
    public @ResponseBody String emailcheck(@RequestParam("name") String name, @RequestParam("email") String email, HttpSession session) {
    
        String meaaseg = "success";
        return meaaseg;
    }
    
    0 讨论(0)
提交回复
热议问题