博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
前后台交互,使用ajax传输参数,可是没有跳转到后台的路径中
阅读量:5346 次
发布时间:2019-06-15

本文共 1728 字,大约阅读时间需要 5 分钟。

function setPayPwd(){

        var mobile=document.getElementById("telPhone").value;
         var payPassword=document.getElementById("payPwd").value;
         var rePayPassword=document.getElementById("rePayPwd").value;
        //  alert("mobile="+mobile+"And"+"payPassword="+payPassword);
         if(payPassword!=rePayPassword){
           alert("前后输入的密码不一致,请重新设置!");
           $("#payPwd").focus();
           return;
           }
           alert("密码一致,开始交互");  
               
         //前后台交互
        $.ajax({
        type: "POST", //用POST方式传输
        dataType: "json", //数据格式:JSON
        url: '${path}/member/setPayPwd.shtml', //目标地址
            data: {mobile:mobile, payPassword: payPassword},
            error: function (XMLHttpRequest, textStatus, errorThrown) { },
            success: function (msg){
             if(msg.ret !=1){
             layer.msg(msg.msg);
             }else{
layer.msg('验证成功,请设置支付密码!', {
     time: 1000 //2秒关闭(如果不配置,默认是3秒)
}, function(){
window.location.href="${path}/goods/index.shtml";
});          
             }
            }
        });     
              //alert("设置成功!");
         
       }
触发此方法的语句;
<input  type="button" οnclick="setPayPwd()" value="提交" />
后台接收代码:
@RequestMapping("/setPayPwd")
public String setPayPwd(ModelMap mm,String mobile,String payPwd){
JSONObject json = new JSONObject();
Map<String, Object> returnMap = new HashMap<String,Object>();
if(StringUtil.isBlank(mobile)||StringUtil.isBlank(payPwd)){
json = getJson(0, null, "参数缺失!");
}
Map<String,String> map = new HashMap<String,String>();
map.put("membermobile", mobile);
map.put("memberpaypwd", payPwd);
returnMap = shopMemberService.login(map);
if(returnMap!=null&&((String)returnMap.get("isResult")).equals("0")){
     json.put("ret", 1);  //0失败   1成功
json.put("data", returnMap); //返回数据
json.put("msg", "设置成功!");  //返回消息
setUser(returnMap); 
}else{
json = getJson(0, null, (String)returnMap.get("memberMsg"));
        mm.put("json",json);
return AJAX_RETURN;
}

欢迎加入WEB前端互动交流群04,海量学习资料免费送

转载于:https://www.cnblogs.com/xsns/p/6668077.html

你可能感兴趣的文章
获取元素属性get_attribute
查看>>
视觉设计师的进化
查看>>
Python/jquery
查看>>
WPF之Binding
查看>>
【BZOJ】【2132】圈地计划
查看>>
智能机不如功能机待机时间长的原因
查看>>
Redis source code analysis
查看>>
http://web.stanford.edu/~jurafsky/slp3/
查看>>
JVM-类的生命周期
查看>>
【bzoj3295】[Cqoi2011]动态逆序对 树套树 线段树套替罪羊树
查看>>
数组方法大全
查看>>
vue的模糊查询和下拉菜单修改信息------------学习记录
查看>>
微信小程序toast框的使用
查看>>
个人简介
查看>>
【剑指offer】面试题 11. 旋转数组的最小数字
查看>>
Python全栈开发——类继承和组合
查看>>
HDU 3308 - LCIS(线段树区间合并)
查看>>
友链大集合
查看>>
ionic3 极光推送
查看>>
DOS基本命令(Windows下的基本命令部分)
查看>>