在Yii 1.X版本中,我们可以在afterValidate
类的clientOptions
属性中使用CActiveForm
,请让我知道在Yii2中实现相同的正确方法
答案 0 :(得分:2)
我刚看到这些变化。我非常惊讶为什么核心团队开发人员决定这样做,现在是事件:
beforeValidate
,afterValidate
,
beforeValidateAttribute
,
afterValidateAttribute
,
beforeSubmit
,
ajaxBeforeSend
,
ajaxComplete
功能被移到了前端。它们由jQuery
trigger
函数触发。你可以像这样抓住你需要的事件:
$("#FORM-ID").on("afterValidate", function (event, messages) {
// Now you can work with messages by accessing messages variable
var attributes = $(this).data().attributes; // to get the list of attributes that has been passed in attributes property
var settings = $(this).data().settings; // to get the settings
});