ajax-传对象给后台

前端之家收集整理的这篇文章主要介绍了ajax-传对象给后台前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var comparativePriceVO = {};
        comparativePriceVO["name"]   =     $("#name").val()
        comparativePriceVO["provinceId"]  =  $("#provinceId").val();
        
        $.ajax({
            type: "post",url:"${base}/comparativePrice/save",async:false,dataType: "json",data:comparativePriceVO,success:function(data) {
                if(data.result ){
                    if( data.data > 0){
                        gAlert(data.message,"友情提示",function(){
                            alert(data.data);//data.data= comparativePriceVo
                        });
                    }else{
                        gAlert(data.message,"友情提示");
                    }
                }else{
                    gAlert(data.message,"友情提示");
                }
            },error:function(){gAlert("网络错误")}
        }); 

@RequestMapping("/save")
    @ResponseBody
    public ResponseEntity<JsonResult> saveComparativePrice( ComparativePriceVO comparativePriceVo  )  {
          if( comparativePriceVo !=null ) { 
            return ControllerHelper.returnJSONResult(true,"新建成功,页面跳转",comparativePriceVo);
        }else {
            return ControllerHelper.returnJSONResult(false,"新建失败!");
        }
    }
原文链接:https://www.f2er.com/ajax/161553.html

猜你在找的Ajax相关文章