本文介绍了SharePoint Designer 工作流项目计数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经创建了 SharePoint 设计器工作流 2013.我正在使用 REST API 来获取带有过滤查询的记录,如下所示

I have created SharePoint designer workflow 2013. I am using REST API to fetch records with filter query as below

[%Workflow Context:Current Site URL%]_api/lists/getbytitle('[%Workflow Context:List Name%]')/items?$select=Title,ItemId,Reaction,Flag&$filter=Flag eq '1'

现在我使用项目计数操作来计算结果,但它总是给我零.请帮我解决问题

Now I am using Item Count Action to count the Results but it always give me zero. Kindly help me to solve the issue

推荐答案

您的端点 _api/web/ 中缺少 web.

You're missing web in your endpoint _api/web/ .

输出 rest api 端点以进行故障排除很有帮助,因此您可以在浏览器中进行测试.

It's helpful to output the rest api endpoint for troubleshooting so you could test in browser.

我的测试演示:

这篇关于SharePoint Designer 工作流项目计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 14:10