卡住了:找不到 Zoho Deluge 代码来将 Zoho Form 集成到 Zoho CRM 中的新记录上

问题描述 投票:0回答:1

早上好/下午好/晚上好,社区。我在使用 Zoho Flow 在提交 Zoho 表单时创建记录时遇到问题(我没有使用本机集成,因为此表单适用于客户)。问题是我的字段是复选框,并且在 Zoho CRM 中创建新记录时,表单的每个输出都作为字符串输入。因此,我从未获得 Zoho CRM 中复选框的布尔值。

这是我的实际功能:

bool marketing_checkbox_boolean(list marketing_requires_list)
{
marketing_fullList = {"Create newsletters (Mkt - admin)","Create social media calendar","Post on Social Medias (LinkedIn/Facebook/Instagram/Twitter)","Send Newsletters","Monitor online traffic and report results.","Assist with the web design and development.","Create simple graphics on Canva","Create videos","Create posts about success stories.","Reply messages on social media","Delete/Report negative comments on social media (LinkedIn/Facebook/Instagram/Twitter)","Website Audit for outdated information.","Help to create sales materials (i.e./Presentations/Banners/Mailings/Brochures/Decks)"};
verification = marketing_fullList.contains(marketing_requires_list);
return verification;
}

有人告诉我一个名为 map() 的函数可能对我有帮助,但我在 Zoho Deluge 页面上找不到它。我真的很感激任何帮助。

问候! Error details Entire flow screen

json forms crm zoho zoho-deluge
1个回答
0
投票

早上好,

Map() 不是一个函数,而是一种数据类型。您可以使用它在 Zoho 应用程序和模块之间传递值。

responseReturn = Map(); responseReturn.put("键","值");

您可以将其转置为字符串 (toString())、JSON 负载 (toJSONList()) 或列表 (toList())。

© www.soinside.com 2019 - 2024. All rights reserved.