阅读:2076 回复:4
Mr.bug
14

帖子

58

跟帖

561

积分

黄金榴莲
黄金榴莲
  • 社区居民

关于附件操作的问题

楼主#
更多 发布于:2018-12-03 16:08
请教在座各位大佬。手里有个需求。
通过接口发起流程时。给附件的传值链接是有验证的,不能用。
这边定的是需要把链接中的附件先下载再上传到H3,我现在懵了。怎么把附件上传到H3对应的流程中去。还是上传到子表中的附件。
在线等。急
liam
1

帖子

99

跟帖

1976

积分

高级榴莲
高级榴莲
1楼#
发布于:2018-12-03 16:20

var instanceContext = Engine.InstanceManager.GetInstanceContext(instanceId);
OThinker.H3.Data.Attachment attachment = new OThinker.H3.Data.Attachment();
attachment.InstanceId = instanceContext.InstanceId;
var attachmentContent=new byte[2];//此处替换成接口下载文件到本地,然后读取文件
attachment.Content=attachmentContent;
//attachment.* =其他自行处理
Engine.InstanceDataManager.AddAttachment(instanceContext.WorkflowPackage, instanceContext.WorkflowName, attachment);
Mr.bug
14

帖子

58

跟帖

561

积分

黄金榴莲
黄金榴莲
  • 社区居民
2楼#
发布于:2018-12-04 16:21
liam:var instanceContext = Engine.InstanceManager.GetInstanceContext(instanceId);
OThinker.H3.Data.Attachment attachment = ne...
回到原帖
求教。怎么读取文件,我已经下载到我本地了
Mr.bug
14

帖子

58

跟帖

561

积分

黄金榴莲
黄金榴莲
  • 社区居民
3楼#
发布于:2018-12-17 14:11
之前已经处理完毕。回来报个道。下载的时候把byte[]往数据库存就好了。
实名用户_ca58e7f3
1

帖子

18

跟帖

192

积分

初级榴莲
初级榴莲
4楼#
发布于:2020-03-12 10:57
Mr.bug:之前已经处理完毕。回来报个道。下载的时候把byte[]往数据库存就好了。回到原帖
不建议用image类型噢
游客

返回顶部