Heim  >  Fragen und Antworten  >  Hauptteil

javascript - AngularJS, wie aktualisiere ich $http.post zum zweiten Mal, ng-repeat?

Ich habe gerade angefangen, AngularJS zu verwenden, und jetzt werden Paging und Abfragen im Hintergrund ausgeführt.
Ich denke, es wäre vielleicht gut, wenn ich $http erneut verwende, um $scope zu aktualisieren.
Aber jetzt kann ich ng-repeat nach search() empfangen Daten, die Seite ändert sich nicht
Dies ist mein aktueller Code.
js

app.controller('checkpoint', function($scope, $http) {
    //getData to list
        $http({
            method: 'post',
            url: '../list',
        }).then(function successCallback(response) {
                $scope.checkpoint = response.data.datas.list;
            }, function errorCallback(response) {
                console.log('请求错误');
        });
    
    
    //search
    $scope.search = function (){
        $http({
            method: 'post',
            params :{keyword:$scope.query},
            url: '../list',
        }).then(function successCallback(response) {
            console.log(response.data.datas.list)
            $scope.checkpoint = response.data.datas.list;
        }, function errorCallback(response) {
            console.log('请求错误');
        });
    };
    
});

html

<p class="rule_serch" ng-controller="checkpoint">
...
<tr ng-repeat="x in checkpoint">
    <td>{{ x.projectCode }}</td>
    <td>{{ x.station }}</td>
    <td>{{ x.code }}</td>
    <td>{{ x.circuit }}</td>
    <td>{{ x.name }}</td>
    <td>{{ x.item }}</td>
    <td>{{ x.description }}</td>
    <td>{{ x.watchedAssetCode }}</td>
</tr>
...
</p>
習慣沉默習慣沉默2736 Tage vor624

Antworte allen(3)Ich werde antworten

  • PHP中文网

    PHP中文网2017-05-16 13:21:22

    search方法在哪触发的?

    Antwort
    0
  • 世界只因有你

    世界只因有你2017-05-16 13:21:22

    检查的时候发现了,布局中间多了一个</p>页面上没看出来

    Antwort
    0
  • PHP中文网

    PHP中文网2017-05-16 13:21:22

    可能angular要再次编译下,坑多。。。

    htmlContent = $compile(htmlContent)($scope);

    Antwort
    0
  • StornierenAntwort