请求前清除之前的数据

时间:2016-07-06 12:31:12

标签: javascript angularjs ajax duplicates asp.net-ajax

我有一个HTML模板,它从控制器的数组加载数据并将它们保存在表中。我还有一个指令,它可以对表行进行转换。数据数组正在填写API请求。在新请求之后,我已将请求结果合并到我的表中。正在为每个请求添加一组行,而不是清除以前的结果。

我调试了我的控制器代码以检查我的数组的状态,并在每次请求之前清除它。这是肯定的。然而,之前添加了新的结果。我认为原因可能出在我的移植指令模板中。

模板如下:

<div class="row">
    <div class="col-md-12">
        <div id="results" ng-show="results.length > 0">
            <table class="table result-table">
                <thead>
                    <tr>
                        <th>1</th>
                        <th>2</th>
                        <th>3</th>
                        <th>4</th>
                    </tr>
                </thead>
                <tbody>
                    <tr ng-repeat="result in results" my-result></tr>
                </tbody>
            </table>
        </div>
    </div>
</div>

以下是我的移植指令的代码:

angular.module('app').directive('myResult',
['$compile',
function ($compile) {
    return {
        transclude: true,
        templateUrl: '/Scripts/app/templates/resultTemplate.html',
        compile: function (tElement, tAttr, transclude) {
            var contents = tElement.contents().remove();
            var compiledContents;
            return function (scope, iElement, iAttr) {
                if (!compiledContents) {
                    compiledContents = $compile(contents, transclude);
                }
                compiledContents(scope, function (clone, scope) {
                    iElement.replaceWith(clone);
                });
            };
        }
    }
}]);

最后用于转换的模板:

<tr class="big-bord">
    <td colspan="4"><h3>{{result.fullName}}</h3></td>
</tr>
<tr ng-repeat="item in result.items">
    <td>{{item.value1}}</td>
    <td>{{item.value2}}</td>
    <td>{{item.value3}}</td>
    <td>{{item.value4}}</td>
</tr>

如何在每个API请求之前清除我的结果?

1 个答案:

答案 0 :(得分:4)

我解决了我的问题。事实证明,多个&lt; tbody&gt;一个表中允许使用标记。所以我只是将我的ng-repeat移动到&lt; tbody&gt;标记:

<tbody ng-repeat="result in results">
    <tr class="big-bord">
        <td colspan="4"><h3>{{result.fullName}}</h3></td>
    </tr>
    <tr ng-repeat="item in result.items">
        <td>{{item.value1}}</td>
        <td>{{item.value2}}</td>
        <td>{{item.value3}}</td>
        <td>{{item.value4}}</td>
    </tr>
</tbody>

所以,我根本不需要任何指令。