140 - 任务 14
Posted 分享牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了140 - 任务 14相关的知识,希望对你有一定的参考价值。
1、获取任务上的所有附件
GET运行时/任务/ taskId /附件
表1.获取任务上的所有附件 - URL参数
参数 | 需要 | 值 | 描述 |
---|---|---|---|
任务id | 是 | 串 | 获取附件的任务的ID。 |
成功回应机构:
[
"id":"3",
"url":"http://localhost:8182/runtime/tasks/2/attachments/3",
"name":"Simple attachment",
"description":"Simple attachment description",
"type":"simpleType",
"taskUrl":"http://localhost:8182/runtime/tasks/2",
"processInstanceUrl":null,
"externalUrl":"http://flowable.org",
"contentUrl":null
,
"id":"5",
"url":"http://localhost:8182/runtime/tasks/2/attachments/5",
"name":"Binary attachment",
"description":"Binary attachment description",
"type":"binaryType",
"taskUrl":"http://localhost:8182/runtime/tasks/2",
"processInstanceUrl":null,
"externalUrl":null,
"contentUrl":"http://localhost:8182/runtime/tasks/2/attachments/5/content"
]
表2.获取任务上的所有附件 - 响应代码
响应码 | 描述 |
---|---|
200 | 表示找到任务并返回附件。 |
404 | 表示找不到请求的任务。 |
2、获取任务的附件
GET运行时/任务/ taskId /附件/ attachmentId
表3.获取任务附件 - URL参数
参数 | 需要 | 值 | 描述 |
---|---|---|---|
任务id | 是 | 串 | 获取附件的任务的ID。 |
附件ID | 是 | 串 | 附件的ID。 |
成功回应机构:
"id":"5",
"url":"http://localhost:8182/runtime/tasks/2/attachments/5",
"name":"Binary attachment",
"description":"Binary attachment description",
"type":"binaryType",
"taskUrl":"http://localhost:8182/runtime/tasks/2",
"processInstanceUrl":null,
"externalUrl":null,
"contentUrl":"http://localhost:8182/runtime/tasks/2/attachments/5/content"
- externalUrl - contentUrl:如果附件是指向外部资源的链接,则externalUrl包含外部内容的URL。如果附件内容存在于Flowable引擎中,contentUrl则将包含二进制内容可以从中流动的URL。
- type:可以是任意的值。当包含有效格式化的媒体类型(例如application / xml,text / plain)时,二进制内容HTTP响应内容类型将被设置为给定值。
表4.获取任务附件 - 响应代码
响应码 | 描述 |
---|---|
200 | 表示找到任务和附件,并返回附件。 |
404 | 指示未找到请求的任务,或者任务没有给定ID的附件。 |
上面文章来自盘古BPM研究院:http://vue.pangubpm.com/
文章翻译提交:https://github.com/qiudaoke/flowable-userguide
了解更多文章可以关注微信公众号:
以上是关于140 - 任务 14的主要内容,如果未能解决你的问题,请参考以下文章
PHP 警告:“vcruntime140.dll”14.0 与第 0 行未知中与 14.10 链接的此 PHP 版本不兼容