Ajax传多个参数,Controller接收

Ajax传多个参数,Controller接收,第1张

var params = {

            "orderNos":orderNos,

            "cSalesPlatform":cSalesPlatform,

            "cMerchant":cMerchant

        }

$.ajax({

url:"${APP_PATH}/cancel",

data: params,

dataType: "json",

type:"POST",

success:function(result){

alert(result.msg)

//回到当前页面

to_page(currentPage)

}

})

@ResponseBody

@RequestMapping(value="/cancel",method=RequestMethod.POST)

public BaseResponse pushOrderByCancel(@RequestParam(value = "orderNos") String orderNos,@RequestParam(value = "cSalesPlatform") String cSalesPlatform,

@RequestParam(value = "cMerchant") String cMerchant){

    

}

使用 &连接各个参数

示例

$.ajax({

url:"../teachingMgt/checkScore",

type : "post",

async : true,

data:"studentId="+stuId+"&subjectId="+subId,

dataType : "json",

success: function(data){

chart.setOption(option)

chart.setOption(data)

$("#myModal1").modal("show")

}

})


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11586350.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存