我正在尝试获取从Zoho书籍到Zoho Creator的估计列表,但它给了我数据类型不匹配的错误

发布于 2025-01-23 10:31:52 字数 173 浏览 3 评论 0原文

请检查此图像以获取更多详细信息,并编码其简单的代码,但我会收到数据类型不匹配错误 https://i.sstatic.net/rdyh6.png

Please check this image for more details and code its simple code but i am getting datatype mismatch error
https://i.sstatic.net/rDYH6.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

半暖夏伤 2025-01-30 10:31:52

这是在Zoho书籍模块中获取记录列表的常见格式。

<variable> = zoho.books.getRecords(<module_name>, <org_ID>, <search>, <connection>);

module_name :模块的名称

org_id :您的组织ID

搜索:指定基于将过滤记录的值。您可以为此参数指定一个空字符串或空映射,在这种情况下,所有记录都将被获取

Connection :连接的名称

以获取估算列表,请执行以下操作,

response = zoho.books.getRecords("Estimates", "54654632", "", "zbooks");

以便进一步澄清请参阅此文档 https://www.zoho.com/deluge/帮助/书籍/fetch-records.html

如果您还有其他疑问,请通过 [email&nbsp; procented]

This is the common format to get list of records in zoho books module.

<variable> = zoho.books.getRecords(<module_name>, <org_ID>, <search>, <connection>);

module_name: Name of the module

org_id: Your organization id

search: specifies the values based on which the records will be filtered. You can specify an empty string or an empty map for this param, in which case all the records will be fetched

connection: Name of the connection

In order to get list of estimates Please do the following,

response = zoho.books.getRecords("Estimates", "54654632", "", "zbooks");

For further clarification refer this document https://www.zoho.com/deluge/help/books/fetch-records.html

If you have any other queries reach out to us at [email protected]

你的呼吸 2025-01-30 10:31:52

屏幕截图上显示的错误是由您使用的单引号而不是双引号()引起的

data = zoho.books.getRecords("Estimmates","OrganizationID","Connection");

The error shown on the screenshot is caused by the single quote you're using instead of double quotes (").

You can use as following:

data = zoho.books.getRecords("Estimmates","OrganizationID","Connection");
ゃ人海孤独症 2025-01-30 10:31:52

您正在使用单句引号的字符串,这些字符串将拦截作为日期或日期时间字符串。改用双引号。

You are using single quotes for strings which Deluge intercepts as date or date-time strings. Use double quotes instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文