ng-repeat

    2熱度

    2回答

    好吧,看起來很簡單,但不是。 我想執行一個簡單的角度過濾器,但我需要指定我的數組在過濾器中使用哪些字段。 一個基本的過濾器是: <li ng-repeat="person in app.people | filter: app.search"> 單場過濾器: <li ng-repeat="person in app.people | filter: {Surname: app.search}"

    1熱度

    1回答

    我在對象上使用ng-repeat的Angular JS。我的代碼是這樣, <thead> <tr> <th style="text-transform: capitalize;">{{monthOrquarter || "month"}} </th> <th ng-repeat="tech in dashboardSrv.portfolioTech">

    0熱度

    4回答

    我正在嘗試使用角度ng-repeat指令迭代嵌套的json對象中的註釋,但在某種程度上它似乎無法訪問它,我做錯了什麼? 這裏JSON posts: [ { title: 'Free pizza at club meetings', upvotes: 15, comments: [ {commento:'comment1'},

    1熱度

    2回答

    控制器: (function(angular) { var app = angular.module('t2w'); app.factory('httpq', function($http, $q) { return { get: function() { var deferred = $q.defer(); $ht

    1熱度

    1回答

    由於某種原因,我沒有在瀏覽器中顯示數據。 這裏我的控制檯的PIC: 內部p標籤,我期待看到檢索到的數據。 這裏是視圖: <div class="row" ng-repeat="voce in voices"> <p style="color:#000;">{{voce.series}}</p> </div> 這裏是控制器: app.controller('MainCtrl', fu

    0熱度

    3回答

    我知道如何使用ng-repeat創建可變數量的表格單元格,但是如何對錶格行執行此操作?我試圖創建一個危險的風格遊戲,其中表格行的數量應該等於每列中的問題數量。這裏是我的JSON是如何構成的: app.js $scope.subjects = [ {topic:'politics',question:['How do we fix our bloated economy?'],answer:'We

    0熱度

    1回答

    我使用的是Angular 1.4。衆所周知,在爲表格等東西渲染大量行時,ng-repeat可能會遇到一些性能問題。但是我想知道是否有一種使用ng-repeat或某種替代迭代的最佳方式來簡單地呈現我所擁有的數據數組。 我不需要任何綁定,因爲它只是爲報表輸出數據。我嘗試了一些建議,如一次性綁定,但它仍然需要大量的時間(對於1000條記錄約10秒或更長)。我嘗試過的其他非Angular方法是在後端呈現H

    0熱度

    2回答

    在角度上迭代遍歷數據集的最有效方式是計算每個城市有多少人? app.factory('Person', function($resource) { return $resource('/api/person/:id', {id: '@_id'}); }); app.controller('MainCtrl', ['$scope', 'Person', function($scope

    0熱度

    1回答

    HTML: <div class="displayImgData col-sm-3" ng-repeat="item in profileData" > <a ng-show="onLoadFav" title="Make as Favourite"> <img class="styleright" src="assets/images/unfavourite.pn

    2熱度

    1回答

    我有嵌套問題ng-repeat。我是新來的AngularJS所以也許我不明白這個概念。 我需要顯示組和其中我需要顯示ITEMS其中有GROUP_ID像GROUP。 我知道怎麼做PHP但我需要在AngularJS。 這是我會怎麼給它PHP: $result=mysqli_query($mysqli, "SELECT * FROM groups ORDER BY position ASC"); w