我正在尝试验证一个应该接受的简单文本字段:
数字 0-100 或 字母 AF
澄清一下,这是给老师评分作业,所以只接受 0-100 和 AF 的分数(没有特殊/非字母数字字符等)。
我似乎无法理解 reg exp 和 Sencha Touch 匹配器。我看过其他帖子,但它们不太适用于我的问题。谢谢。
我的模型:
Ext.define('App.model.EnterGradesModel',{
extend: 'Ext.data.Model',
alias: 'model.User',
config: {
fields: [
{
grade: 'grade'
}
],
validations: [
{
type: 'format',
field: 'grade',
matcher: //This is where I need the help ----- ,
message: 'Grade should be 0-100 or A-F'
}
]
}
});
在我看来处理程序:
{
xtype: 'button',
width: 100,
text: "Save",
id: "saveMyGradeButton",
action: 'saveMyGrade',
handler : function() {
var model = Ext.create('App.model.EnterGradesModel', this.up('formpanel').getValues());
var errors = model.validate();
console.log(model);
if (errors.isValid()){
// Validation successful - fire grade event in controller
this.fireEvent('saveMyGrade', this);
} else {
// Validation failed
var data="";
console.log(data);
errors.each(function (item, index, length) {
data = data + '| '+ item.getField() + ' - ' + item.getMessage() + ' |';
});
Ext.Msg.alert("oops.", data);
}
}
}