更新行

 在 Zoho Reports 中更新行

您可以使用 updatedata() 任务从 Zoho Creator 更新 Zoho Reports 中的行。此任务将返回包含已更新列名的映射。

语法

<return value as map> = zoho.reports.updatedata(<DATABASE NAME>,<TABLE NAME>, <Data as map>,<Criteria>);

其中,
<return value> 是包含 Zoho Reports 返回的响应的映射对象。
<Database Name> 是 Zoho Reports 中包含 <table name> 的数据库的名称
<Table Name> 是 Zoho Reports 中要更新行的表格名称
<Data as map> 是待更新的数据,例如,{ "Name" : "test"}
<Criteria> 必须是以下格式:{<colName><operator><colValue>}, for example, {"Name='test'"}

  示例

从 Zoho Creator 更新 Zoho Reports 中行的示例脚本。

r = zoho.reports.updatedata("test", "contact", { "Name" : "test" }, "Name='My test'");

其中,

r 是一个变量,用于保存 Zoho Reports 返回的响应。

响应格式:

{"updatedColumns":"[Name]"}

 相关链接

http://www.zoho.com.cn/reports/help/api/updating-data.html