gpt4 book ai didi

javascript - 如何对动态生成的表单字段实现表单验证

转载 作者:行者123 更新时间:2023-11-28 04:00:17 26 4
gpt4 key购买 nike

我的 Angular 应用程序中有一个页面,其中所有表单字段都是根据来自后端的数据动态创建的。

                <div class="col-md-12">
<form class="form-inline" name="reportsForm">
<div class="form-group form-group-grid" ng-repeat="fields in selectedTabData.requiredField" ng-switch="fields.paramType">
<label>{{fields.paramName}}<span class="asterisk" ng-if="fields.mandatory==true">*</span></label>
<input type="number" class="form-control" ng-switch-when="Number" ng-model="fields.fieldValue" ng-required="fields.mandatory">
<input type="date" data-date-format="mm/DD/YYYY" class="form-control" ng-switch-when="DatePicker" ng-model="fields.fieldValue" ng-required="fields.mandatory">
<input type="text" class="form-control" ng-switch-when="Text" ng-model="fields.fieldValue" ng-required="fields.mandatory">
<select type="date" class="form-control" ng-switch-when="DropDown" ng-options="field.paramKey as field.paramValue for field in fields.paramData" ng-model="fields.fieldValue" ng-required="fields.mandatory">
</select>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary form-inline-grid-button" ng-click="getReport()">Run Report</button>
</div>
</form>
<span style="color:red">Please enter all the required fields marked with (*)</span>
</div>

如果表单中的任何必填字段留空,我需要显示验证错误消息。

来自后端的表单字段数据在$scope.selectedTabData.requiredField中分配

$scope.selectedTabData.requiredField.forEach(function(item)
{
if(item.paramType == "DatePicker")
{
var date = new Date(item.fieldValue);
var formattedDate = (date.getMonth() + 1) + '/' + date.getDate() + '/' + date.getFullYear();
paramValue.push(formattedDate);
paramName.push(item.paramName);
}
else
{
if(item.mandatory == true && item.fieldValue == undefined){
//need to set validation as failed
}else{
//need to set validation as passed
}
paramValue.push(item.fieldValue);
paramName.push(item.paramName);
}
})

这是我需要检查以验证表单的条件:

if(item.mandatory == true && item.fieldValue == undefined){
//need to set validation as failed
}else{
//need to set validation as passed
}

这是我第一次使用动态字段,任何人都可以帮助我在这种情况下实现验证吗?

谢谢。

最佳答案

所以为了解决这个问题,我必须用基本的方法来处理这个问题。

我创建了一个范围变量并将其设置为标志。

在 HTML 中:

<div>
<span ng-if="formInvalid" style="color:red">Please fill in all the required fields(*)</span>
</div>

在 Controller 中:

$scope.formInvalid = false; 

if(item.mandatory == true && item.fieldValue==null)
{
$scope.formInvalid = true;
}

这对我来说很有效。如果您有处理动态元素验证的替代解决方案,请添加更多答案。

关于javascript - 如何对动态生成的表单字段实现表单验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47175985/

26 4 0
文章推荐: c++ - 显示 32 位位图 - 调色板
文章推荐: php - 我如何提交位于
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com