gpt4 book ai didi

javascript - backbone.js 使用子字符串过滤集合

转载 作者:行者123 更新时间:2023-12-03 11:42:26 24 4
gpt4 key购买 nike

下面的问题让我抓狂。

_.each(collection, function( account, key ){

var totalPhy = that.physicianCollection.where({ 'Hospital_Id__c' : account.Id }).length;
account.physicians = { 'total' : totalPhy };
});

Hospital_Id__c 与 account.Id 相同时,它就可以工作。但我的帐户 ID 是 hospital_Id__c 的子字符串。如何搜索并获取计数?我尝试了索引和搜索方法。请建议。提前致谢。

最佳答案

_.where_.filter 的一个简单用例,用于匹配精确的属性。在您的情况下,您需要实际使用 _.filter 并自己编写逻辑。我不确定帐户 ID/医院 ID 是什么样子,但代码可能类似于:

var totalPhy = that.physicianCollection.filter(function(phys, index, collection){
//phys is your model
return phys.get('Hospital_Id__c').indexOf(account.Id) != -1;
//(or however the ids are set, your logic here)
}).length;
account.physicians = { 'total' : totalPhy };

http://underscorejs.org/#filter

关于javascript - backbone.js 使用子字符串过滤集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26208901/

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