成年大片免费视频播放二级_早上躁晚上躁天天躁8090_新金瓶梅2下载_欧美国产一卡二在线播放_国产在线精品欧美日韩电影

您的位置:首頁技術(shù)文章
文章詳情頁

angular.js - 在angular中,使用ng-repeat循環(huán)輸出一個列表,然后節(jié)當(dāng)中具體的一個參數(shù)值(是數(shù)值),然后整個循環(huán)節(jié)的值總數(shù)相加

【字號: 日期:2024-09-13 18:53:38瀏覽:61作者:豬豬

問題描述

在angular中,使用ng-repeat循環(huán)輸出一個列表,然后需要獲取每個循環(huán)節(jié)當(dāng)中具體的一個參數(shù)值(是數(shù)值),然后整個循環(huán)節(jié)的值總數(shù)相加,具體代碼如下:

<li ng-repeat='num in data.vote_options track by num.option_id' ng-class='{’finished’:’num.is_voted==1’,’’:’num.is_voted==2’}'><input type='checkbox' name='{{num.option}}' ng-checked> <label for='{{num.option_id}}'> <p ng-bind=num.option>Normal</p> <p class='progress'><p style='width: 55%; background:#a2d346;'></p><span ng-bind='num.voted_num / (num.length).voted_num'>55%</span><p class='votesnums'><i ng-bind='num.voted_num'></i>票</p> </p></label></li>

angular.js - 在angular中,使用ng-repeat循環(huán)輸出一個列表,然后節(jié)當(dāng)中具體的一個參數(shù)值(是數(shù)值),然后整個循環(huán)節(jié)的值總數(shù)相加紅圈中的55%是根據(jù)上述代碼中的(選項票數(shù)/總票數(shù) num.voted_num/num.length.voted_num)這樣做法渲染出來的效果結(jié)果是NaN,請問大神們,知道怎么去獲取總的循環(huán)節(jié)中的具體某個參數(shù)值的總和啊?

問題解答

回答1:

總票數(shù)是要后臺數(shù)據(jù)傳給你,或者自己js里面循環(huán)計算一下。在ng-repeat里面是沒法計算的

回答2:

指令是屬于dom的接口,不應(yīng)該用來維護(hù)數(shù)據(jù)