验证在Metronic UI中无效.为什么?

viv*_*una 8 html twitter-bootstrap metronic angular

验证无法正常运行.它始终显示此字段是必需的.即使我不碰这个领域.为什么?

<div class="form-group">
 <label class="control-label col-sm-4">Description<span class="required"> * </span></label>
  <div class="col-sm-8">
    <input type="text" name="name" data-required="1" class="form-control" aria-required="true" aria-invalid="true" aria-describedby="name-error">
      <span id="name-error" class="help-block help-block-error">This field is required.</span>
  </div>
</div>
Run Code Online (Sandbox Code Playgroud)

Jef*_*son 1

您可以尝试将其添加name="name"到标签中。

还要添加for="name"到标签中。