I m 采用单一吨位模式制造一种形式处理文字......
我不想把所有法典放在首位,而第一种方法却防止了过失:
//public methods
handleSubmit: function (e) {
//prevent the default submission process
e.preventDefault();
},
防止失窃是劫持表格以阻止服务器边处理。
然后,我制定了验证规则......如果通过所有验证规则,则采用这种方法:
validData: function (error) {
if (error.length === 0) {
return true;
} else {
// If there are errors in the form then run alert message
alert(error);
}
},
That being that if there are no errors then the server-side script processes the form and the item is added to the database (I m not using AJAX because I have an issue with images)
然而,返回真的没有在这里工作......我不知道为什么,但我相信,这样做的理由非常简单。