提醒

 描述

Deluge 任务提醒旨在通过显示富有意义的消息来提醒用户。它可用于除“成功时”块之外的所有工作流块。提醒消息显示在弹出窗口中。

:当放入“验证时”块时,alert 任务的消息仅在后面跟随取消提交时才会显示。如果没有取消提交,Zoho Creator 会忽略执行提醒任务。

 语法

alert <value>;

其中 <value> 是要显示的提醒消息。

 示例

  1. 想像一下表单包含一个 ​Age 字段,且当 Age 不在 20 至 100 之间时,阻止该表单提交。

    Age
    (
    type = number
    )
    on validate
    {
    if (input.Age < 20) && (input.Age >100)
    {
    alert "Age should be between 20 and 100";
    cancel submit;
    }
    }

  2. 下面给出的代码片断提取求职者申请特定职位时对应的数据,并检查该职位的状态目前是否为已关闭,然后向用户显示错误消息。您可以通过访问变量“opening”来访问与该职位相关的所有详情。

    on validate
    {
    opening = New_Opening [Position_Name == input.Applied_For];
    if (opening.Status == “Closed”)
    {
    alert "The job profile " + input.Applied_For + " for which you have applied is not currently open";
    cancel submit;
    }
    }