Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Zoho deluge 编写一个函数。我实际上调用了一个 API,我得到了以下响应
[ {"name": "abc", email: "abc@xyz.com" }, {"name": "qwc", email: "qwc@mnh.com" } ]
我已将其转换为 JSONArray (Map)。但是,我不想运行循环来获取电子邮件值,因为有 10k 个条目。谁能帮我从回复中提取电子邮件列?
谢谢 GS
我知道的唯一方法(对于洪水)是使用循环。不幸的是,Zoho 在 40 个循环后中断了一个函数(猜猜是 40 个)。您是否可以选择提供 API 参数来过滤您需要的值?(在 Zoho 中是可能的)