Servicenow - 如何限制 Legacy:JSON 中的记录数
Servicenow - How to limit the number of records in Legacy:JSON
阅读本文后
http://wiki.servicenow.com/index.php?title=Legacy:JSON_Web_Service#getRecords
尝试了以下方法
基地URL:https://my_server.service-now.com/
- /incident.do?JSON&sysparm_action=getRecords&sysparm_force_row_count=3
- /incident.do?JSON&sysparm_action=getRecords&sysparm_query=3
- /incident.do?JSON&sysparm_action=getRecords&sysparm_record_count=3
但每次,returns 该用户的所有可用记录。
我们正在使用 RetroFit 来使用 ServiceNow 网络服务。
开箱即用,无法通过请求参数限制旧版 JSON 处理器。您可以设置全局 属性,但这会限制 每个 请求的行数。
但是,JSONProcessor
只是一个脚本包含(您可以通过名称找到它),您可以从目标实例中修改它以 添加 此行为, ServiceNow 社区上的这篇文章提供了一个示例:
https://community.servicenow.com/thread/150482
阅读本文后 http://wiki.servicenow.com/index.php?title=Legacy:JSON_Web_Service#getRecords
尝试了以下方法
基地URL:https://my_server.service-now.com/
- /incident.do?JSON&sysparm_action=getRecords&sysparm_force_row_count=3
- /incident.do?JSON&sysparm_action=getRecords&sysparm_query=3
- /incident.do?JSON&sysparm_action=getRecords&sysparm_record_count=3
但每次,returns 该用户的所有可用记录。
我们正在使用 RetroFit 来使用 ServiceNow 网络服务。
开箱即用,无法通过请求参数限制旧版 JSON 处理器。您可以设置全局 属性,但这会限制 每个 请求的行数。
但是,JSONProcessor
只是一个脚本包含(您可以通过名称找到它),您可以从目标实例中修改它以 添加 此行为, ServiceNow 社区上的这篇文章提供了一个示例:
https://community.servicenow.com/thread/150482