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.
我正在使用 getRecords() 从 Zoho Books 获取数据到 Zoho Creator,但我只能获取 200 条记录。如何获取剩余的记录(假设我有 300 条记录,通过第一次调用我得到 200 条记录,如何获取剩余的 100 条记录)?
resp=zoho.books.getRecords("invoices", "org_id","page=4"); has_more_page=resp.get("page_context").getJSON("has_more_page"); 如果有更多记录可用,has_more_page 将返回 true