AngularJs:必需的字段验证和具有内容可编辑功能的HTML表动态行的突出显示

时间:2018-07-23 19:20:24

标签: angularjs angularjs-directive contenteditable angularjs-ng-model angularjs-forms

我有一个HTML表格,如下所示:

<tbody>
    <tr ng-repeat="r in targetTable.rows">
      <td contenteditable="true" class=""></td>
      <td contenteditable="true"
          ng-repeat="column in targetTable.columns"
          ng-model="r[column.id]"
          ng-blur="!r.id? addNewRow(r[column.id], r): undefined">
      </td>             
    </tr>
</tbody>

我正在使用contenteditable指令使单元格可编辑。

app.directive('contenteditable', ['$sce', function($sce) {
  return {
    restrict: 'A',
    require: '?ngModel',
    link: function(scope, element, attrs, ngModel) {
      var disable = (attrs.contenteditable === "false") || !Boolean(attrs.contenteditable);
      if (!ngModel || disable) return; // do nothing if no ng-model

      // Write data to the model
      var read = function(value) {
        var html = element.html() || (typeof value === "string" ? value : "");

        // When we clear the content editable the browser leaves a <br> behind
        // If strip-br attribute is provided then we strip this out
        if (attrs.stripBr && html == '<br>') {
          html = '';
        }
        ngModel.$setViewValue(html);
      };

      // Specify how UI should be updated
      ngModel.$render = function() {
        element.html($sce.getTrustedHtml(ngModel.$viewValue || ''));
      };

      // Listen for change events to enable binding
      element.on('blur keyup change', function() {
        scope.$evalAsync(read);
      });

      setTimeout(function() {
        read(ngModel.$modelValue); // initialize
      });

    }
  };
}]);

您可以在此处查看Jsfiddle:http://jsfiddle.net/u1vbeos5/144/

单击以添加列,它将添加动态列。在第1行开始输入,之后它将自动创建另一个动态行。

我现在想要的是为每行添加必填字段验证,以便当有人单击保存时触发验证并突出显示所有空行。

我不确定我们该怎么做。我相信我们必须在指令末尾做一些事情以找出空行并将其突出显示。

是否有输入?

谢谢

2 个答案:

答案 0 :(得分:1)

问题是<td>无法正常工作。首先尝试一个,看看如何正确处理N列和N行。

当某人单击保存时,您可以传递rows数组并在该对象内添加一个有效/无效的布尔值,然后根据结果使用ng-class突出显示该单元格。

<td contenteditable="true" ng-model="r.value"
    ng-class="r.invalid ? 'cell-highlighted' : ''">
</td>
$scope.save = function(rows, columns) {
    rows.forEach(row => {
        if (!row.value || row.value.trim() === '') {
            row.invalid = true;
        } else {
            row.invalid = false;
        }
    })
    alert('please fill table data');
};

我已通过这些更改修改了您的小提琴,希望您可以使用它。

http://jsfiddle.net/4t85gw1z/

答案 1 :(得分:1)

无需更改您的指令,内置ng-required已经可以使用。只需添加注释中提到的form控制器即可。如果您不添加表单控制器,则需要在$scope.save上亲自验证所有字段。

ng-required添加到您的模型:

<td contenteditable="true"
     ng-repeat="column in targetTable.columns"
     ng-model="r[column.id]"
     ng-blur="!r.id? addNewRow(r[column.id], r): undefined"
     ng-required="!$parent.$last"></td>

ng-required=$parent.$last表示如果该字段不是最后一行,则该字段是必填字段(我根据您添加行的方式假设了此字段)。如果没有值,Angularjs将在ng-invalid元素上设置类td

由于似乎没有表单,因此将ng-form添加到表标记中。另外,也可以使用form标签将其包装起来,以达到相同的目的。

<table class="table table-bordered"
    ng-form="targetTableForm"
    ng-class="{submitted: targetTableSubmitted}">

保存时,检查表单是否有效并将表单标记为已提交。这将根据上面的标记将submitted类添加到表中。

$scope.save = function() {   
    $scope.targetTableSubmitted = true;

    if ($scope.targetTableForm.$valid) {
        alert('submitted');
    } else {
        alert('please fill table data');
    }
    /**
      * If no form controller is defined, manually loop through all rows
      * and columns to check for a value
      */
  };

然后,最后,添加CSS以突出显示表格单元格:

.table.submitted td.ng-invalid {
  background-color: red;
}

如果表单无效,另一种方法是禁用保存按钮。

请注意,“名称”列没有ng-model,因此不会与任何内容绑定,因此不会得到验证。

查看更新后的jsfiddle