我正在尝试使用表格报告设置表单并仅使用 REST 源。
目前我有一个表单和交互式报告设置。它使用带有动态项目的休息源。IE:
http://source/asm/instances/:group
:group
然后可以从表单中搜索到哪里。
现在返回的列都是与用户相关的,但我希望能够通过 REST API 设置一项。所以假设我进入了一个组并得到以下结果:
group | name | surname | status
ABC | Dan | Murray | inactive
ABC | Mary | Swanson | active
REST Source 具有status
远程激活/停用工具的功能。IE
http://source/asm/instances/ABC/dan/activate
和
http://source/asm/instances/ABC/dan/deactivate
现在我需要将状态列修改为具有两个选项的列表形式,激活/停用。This is where the issue comes in. When either of the two items are selected, it needs to use the relevant REST source as posted above and post to the tool, meaning it will activate/deactivate on the fly. 我整个周末都在寻找和尝试,但我找不到办法做到这一点。
到目前为止,我最接近的是创建一个链接,但这只是将我路由到我不需要的 URL。
我真的希望有人能够在这里帮助我,因为我正在苦苦挣扎。