gpt4 book ai didi

javascript - 请求前清除之前的数据

转载 作者:搜寻专家 更新时间:2023-11-01 04:14:26 25 4
gpt4 key购买 nike

我有一个 HTML 模板,它从 Controller 的数组中加载数据并将它们保存在一个表中。我还有一个指令,它使表行包含在内。正在根据 API 请求填充数据数组。在新请求之后,我将请求结果合并到我的表中。为每个请求添加一组行,而不是清除以前的结果。

我已经调试了我的 Controller 代码以检查我的数组的状态,并且它在每次请求之前被清除。这是肯定的。然而,新的结果被添加到以前的结果中。我认为原因可能出在我的嵌入指令模板中。

模板看起来像:

<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 请求之前清除我的结果?

最佳答案

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

<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>

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

关于javascript - 请求前清除之前的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38224068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com