为了账号安全,请及时绑定邮箱和手机立即绑定

JqueryValidate remote的用法

首先知道,remote请求的controller只能返回String或boolen型的true 或者 false

 userPhone: {
                    remote: "${ctx}/register/checkUserPhone?userPhone="+$("#userPhone").val()
                }

以上代码发送的请求:http://localhost:8080/register/checkUserPhone?userPhone=&userPhone=15032108332


userPhone: {
                    remote: "${ctx}/register/checkUserPhone"
                }

以上代码发送的请求:http://localhost:8080/register/checkUserPhone?userPhone=15032108332

由此证明,remote会自动像地址后边拼接 name="userPhone"的input的值作为参数传递


标准写法:

userPhone: {
                    remote: {
                        url: "${ctx}/register/checkUserPhone",
                        type: "get",
                        data:{
                            userPhone:function(){
                                return $("#userPhone").val();
                            }
                        }
                    }
                }

此外遇到的问题:当项目中用到了shiro,要注意remote请求地址会被shiro拦截,开始时shiro配置:

/register = anon

发现remote未起作用,并且不报错

因为remote请求register的次级地址,所以shiro配置应为:

/register/** = anon
哎这种地基问题折腾半天。。。。

开始的时候,我们以为我们什么都知道,但后来发现,事实是我们什么都不知道---麦克阿瑟

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消