我正在为需要一些验证的表单创建模型。
该模型如下所示:
//Defining a data structure for the Work Item List
Ext.define('InfoImage.model.configure.configModel', {
extend : 'Ext.data.Model',
config : {
//Defining the fields required in the Work Item List
fields : [ 'servname', 'port', 'protocol', 'username', 'password',
'domain', 'appconfig', 'apptitle',
'appconfig' ],
validations : [
{
type : 'presence',
name : 'servname'
},
{
type : 'presence',
name : 'port'
// matcher : /[0-9]{4}[A-Z]+/
},
{
type : 'presence',
name : 'username'
},
{
type : 'presence',
name : 'password'
}],
proxy : {
type : 'localstorage',
id : 'configId'
}
}
});
我尝试通过调用验证
Ext.getCmp('form').validate();
但它说它没有称为验证的方法。
sencha 是否提供验证方法?如果是,我该如何实现?