gpt4 book ai didi

php - 如何在场景中为具有ajax验证的字段设置验证消息? - Yii2

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:02:24 26 4
gpt4 key购买 nike

我正在为 2 个表单使用一个模型文件。一个用于注册,另一个用于添加成员

我没有为 SIGNUP 表单设置任何场景。但是,添加成员 表单的场景已设置。

型号

public function rules() {
return [

//Add Members
['first_name', 'required','message'=>'Please enter first name.','on'=>'addteammembersidebar'],
['email', 'required','message'=>'Please enter email address.','on'=>'addteammembersidebar'],
['mobile','required','message'=>'Please enter mobile number.','on'=>'addteammembersidebar'],

//Common
['first_name', 'required','message'=>'Please enter your first name.'],
['email', 'required','message'=>'Please enter your email address.'],
['mobile','required','message'=>'Please enter your mobile number.'],

];
}

查看

在这里,我设置了类似 $modelTeamMembers->scenario = 'addteammembersidebar'; 的场景。

<?php foreach ($modelsTeamMembers as $indexMember => $modelTeamMembers): 
$modelTeamMembers->scenario = 'addteammembersidebar';
?>
<tr class="house-item">
<td class="vcenter">
<?php
// necessary for update action.
if (! $modelTeamMembers->isNewRecord) {
echo Html::activeHiddenInput($modelTeamMembers, "[{$indexMember}]id");
}
?>

<?php
$modelTeamMembers->first_name = $first_name;
echo $form->field($modelTeamMembers, "[{$indexMember}]first_name")->label(false);
?>
</td>
<td>
<?php
$modelTeamMembers->last_name = $last_name;
echo $form->field($modelTeamMembers, "[{$indexMember}]last_name")->label(false);
?>
</td>
<td>
<?php
$modelTeamMembers->email = $email;
echo $form->field($modelTeamMembers, "[{$indexMember}]email",['enableAjaxValidation' => true])->label(false);
?>
</td>
<td>
<?php
$modelTeamMembers->mobile = $mobile_number;
echo $form->field($modelTeamMembers, "[{$indexMember}]mobile",
['inputOptions' => ['class' => 'form-control', 'maxlength'=>"10"]])->label(false);
?>
</td>
</tr>

<?php endforeach; ?>

email 字段外,所有验证错误消息均有效。如果我从字段中删除 'enableAjaxValidation' => true,它就可以工作。但是,对我来说 'enableAjaxValidation' => true 是必需的。

图片

enter image description here

如图所示,可以清楚地看到错误消息“请输入您的电子邮件地址。”应该是“请输入电子邮件地址。”。只有 email 字段验证错误消息不正确。除了一切都很好。

如何为场景的email字段设置验证消息?任何帮助/提示/建议都是值得赞赏的。

最佳答案

我可以知道为什么您需要在这里使用带有 AjaxValidation 的电子邮件验证吗?对于这种类型,没有它就足够了,因为 AjaxValidation 更适合从数据库或其他模型而不是模型本身搜索和检索数据。

但是,如果您觉得需要 AjaxValidation,则必须设置一些不同的东西,因为您当前的代码无法正常工作。


View 中设置AjaxValidation:

// Set to: index.php?r=profile/email-validation
$form = ActiveForm::begin(['validationUrl' => ['profile/email-validation']]);

// This is set correctly (no changes are needed comparing to your attempt)
echo $form->field($modelTeamMembers, "[{$indexMember}]email", ['enableAjaxValidation' => true])->label(false);

为什么需要这个?您已将 AjaxValidation 设置为事件状态,但尚未设置此 Ajax 将处理的 URL。在大多数情况下,它在 ActiveForm::begin() 中设置。


Controller 中设置 AjaxValidation(必需):

// Method that renders your view file
public function actionSomethingThatRendersView()
{
// Code here
$user->scenario = 'addteammembersidebar'; // Custom scenario name
return $this->render(/* the remaining code goes here */);
}

// This is the method that Ajax will send request to ($_POST[])
public function actionEmailValidation()
{
$post = Yii::$app->request->post();
if (!empty($post))
{
Yii::$app->response->format = Response::FORMAT_JSON; // Must be in JSON format
$profile = new User(); // Edit your class name in here
// Custom scenario (must be the same as above otherwise you might get unexpected response)
$profile->scenario = 'addteammembersidebar';
$profile->load($post);

return ActiveForm::validate($profile);
}
}

为什么需要这个? Ajax 将发送一个请求,但没有任何操作的请求将不执行任何操作。这将“创建新的”具有相同规则和属性的对象,并将尝试使用新的数据集进行验证。对于渲染方法,$obj->scenario 也必须设置,否则它会使用默认场景。


模型没有变化。一切都应该与您的示例中的一样。

如果你想让它成为唯一的电子邮件,你还必须对 Model 进行更改:

public function rules()
{
// ...
['email', 'unique', 'message' => 'Email must be unique'],
// If your attribute is not in the same table as defined in class, then:
['email', 'unique', 'message' => 'Email must be unique', 'targetClass' => User2::className()],
}

关于php - 如何在场景中为具有ajax验证的字段设置验证消息? - Yii2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38674506/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com