码迷,mamicode.com
首页 > 其他好文 > 详细

Ext通过后台校验字段是否重复

时间:2015-02-14 12:14:41      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

话不多说,直接上代码:

handlerRybh : function(textField) {
        Ext.Ajax.request({// ajax请求的方法
            url : ‘userManage/person/checkPersonByRybh.json‘,
            params : {
                "rybh" : textField.getValue(),
            },
            scope:this,//使回调函数中的this变成当前的类
            success : function(res) {
                var data = Ext.decode(res.responseText);
                if (data.success == ‘true‘) {
                    //do nothing
                } else if (data.success == ‘ApplicationException‘) {
                    Ext.getCmp(‘personWindow‘).down(‘#rybh‘).setActiveError(data.errorMsg);
                    Ext.getCmp(‘personWindow‘).down(‘#rybh‘).doComponentLayout();//显示提示信息
                } else {
                    Ext.Msg.alert(‘系统错误提示‘, data.errorMsg);
                }
            },
            failure : function(res) {
                var respText = Ext.decode(res.responseText);
                Ext.Msg.alert(‘系统提示‘, respText.error);
            },
        });
    },

Ext通过后台校验字段是否重复

标签:

原文地址:http://www.cnblogs.com/sdjnzqr/p/4291378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!