本文介绍了Yii 验证方案是否在 enableClientValidation 设置为 true 的情况下工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此处使用 Yii 1.1.8.

Using Yii 1.1.8 here.

有谁知道 Yii 验证方案是否适用于客户端 Yii 验证 'enableClientValidation'=>true ?

Does anyone know if Yii validation scenarios work with client side Yii validation 'enableClientValidation'=>true ?

推荐答案

Yii 将使用您构建表单时设置的方案.

Yii will use the scenario that was set up when you built the form.

因此,无论表单初始化时的情况如何,ActiveForm 都会使用 模型->getValidators.

So whatever the scenario was when the form was initialized will be honoured as the ActiveForm uses Model->getValidators.

唯一的问题是以防万一您的保存"逻辑发生变化,但这不应该太常见.

Only problem with this is incase the scenario changes on your "save" logic, but that shouldn't be too common.

这篇关于Yii 验证方案是否在 enableClientValidation 设置为 true 的情况下工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 15:59