在Angular UI Bootstrap popover中使用表单?

时间:2016-07-17 14:10:43

标签: javascript angularjs angular-ui-bootstrap

我有一个按钮,使用模板弹出Angular UI Bootstrap popover。

您可以在this pen

中查看

弹出窗口模板是一个表格,其中包含一系列带有ng-models的文本字段:

<script type="text/ng-template" id="filterPopoverTemplate.html">
<div class="filters">
  <form>
    <table>
      <tbody>
        <tr>
          <td><input type="text" size="5" ng-model="filterHsCodeRestricted"></td>
          <td>HS Code Restricted</td>
        </tr>
        <tr>
          <td><input type="text" size="5" ng-model="filterHsCode10"></td>
          <td>HS Code 10</td>
        </tr>
        <tr>
          <td><input type="text" size="5" ng-model="filterCOD"></td>
          <td>COD</td>
        </tr>
      </tbody>
    </table>
    <div class="filter-buttons">
      <button tabindex="0" class="btn btn-default btn-xs" ng-click="applyFilters()">Apply</button>
      <button class="btn btn-default btn-xs" ng-click="resetFilters()">Reset</button>
    </div>
  </form>
</div>
</script>

我有一个“重置”按钮,它调用一个函数,我想将所有ng-model重置为空字符串:

   $scope.resetFilters = function () {
    $scope.filterHsCodeRestricted = '';
    $scope.filterHsCode10 = '';
    $scope.filterCOD = '';
  };

但是,如果我在字段中键入内容并单击“重置”,则模型不会设置为空字符串。我已经在其他地方完成了这项工作,它只是在popover模板中,所以我认为它与popover模板中的字段有关。我如何“访问”那些?

2 个答案:

答案 0 :(得分:1)

问题是您使用的模型没有DotRulecontroller-as-syntax

Pankaj Parkar已在question中解释了整个问题。

因此,要使其工作,您必须创建一个新对象,例如:

$scope.model = {};

然后,像这样建立你的ng-model's

ng-model="model.filterCOD"

等等..

答案 1 :(得分:0)

您的代码存在问题:

您需要在filterPopoverTemplate.html

中定义另一个ng-controller
  app.controller('poptemp', function($scope) {

  $scope.resetFilters = function() {  

    $scope.filterHsCodeRestricted = '';
    $scope.filterHsCode10 = '';
    $scope.filterCOD = '';
    $scope.filterPOE = '';
    $scope.filterECCN = '';
    $scope.filterItemCondition = '';

  };

});

检查corrected code here