admin管理员组文章数量:1339193
In this doc : .html iteration is achieved using the 'foreach' binding :
<tbody data-bind="foreach: people">
Is it possible to access the size of this binding via javascript/jquery ?
Something like : alert('People size is '+people.size);
I need to access the size in order to do a simple validation check.
In this doc : http://knockoutjs./documentation/foreach-binding.html iteration is achieved using the 'foreach' binding :
<tbody data-bind="foreach: people">
Is it possible to access the size of this binding via javascript/jquery ?
Something like : alert('People size is '+people.size);
I need to access the size in order to do a simple validation check.
Share Improve this question asked Mar 7, 2013 at 13:00 blue-skyblue-sky 53.9k161 gold badges466 silver badges780 bronze badges 3- when/where do you want to know that? – Daniel A. White Commented Mar 7, 2013 at 13:00
- do you have access to the view model in that context? – Daniel A. White Commented Mar 7, 2013 at 13:06
-
console.log(self.people().length);
in your JS model. Just of the top of my head so haven't checked. – rkeet Commented Mar 7, 2013 at 13:06
1 Answer
Reset to default 18Do you mean within the foreach itself? You can call the parent in the loop, then access the observable array again:
$parent.people().length
Or anywhere you have bound your view model, you can call:
people().length
Or you can add a puted observable to your view model. Inside your view model code, assign this to a var named self, then:
var peopleCount = ko.puted(function()
{
return self.people().length;
}
本文标签: javascriptHow to access size of 39foreach39 binding in knockout js gtStack Overflow
版权声明:本文标题:javascript - How to access size of 'foreach:' binding in knockout js > - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743576933a2505170.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论