gpt4 book ai didi

类似于 linq 的 Where() 的 Javascript (jquery) 功能

转载 作者:行者123 更新时间:2023-11-29 10:39:15 25 4
gpt4 key购买 nike

是否可以在 jquery 中执行类似于此 C# 示例的操作:

LoopModel = Model.Fields
.Where(p => p.Key < 1000 && !Model.FieldHandled.ContainsKey(p.Key) && !FieldsValid.ContainsKey(p.Key))
.OrderBy(p => p.Value.SortOrder).ThenBy(p => p.Value.FieldTypeID).ThenBy(p => p.Value.FieldLabel);

我可以

var fields = @Html.Raw(JsonConvert.SerializeObject(Model.Fields));

所以我希望能够从“字段”中选择某些字段。

谢谢

最佳答案

使用filter .不需要库。

这是链接中的示例:

const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];

const result = words.filter(word => word.length > 6);

console.log(result);
// expected output: Array ["exuberant", "destruction", "present"]

关于类似于 linq 的 Where() 的 Javascript (jquery) 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31944986/

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