前情提要
- 交互场景:dify的ChatFlow上传文件(本示例是单张图片),通过HTTP请求至SpringBoot后端
- dify版本:0.13.2
- python版本:3.12.7
1. 自定义上传变量
在【开始】节点自定义变量单文件上传变量file
2. 下接HTTP请求节点
BODY要选择form-data,类型选择file,值选择你在【开始】节点那边定义的file变量。
3. SpringBoot接收参数
后端直接用MultipartFile来接收即可。
4. 本示例使用过程异常介绍
- dify使用sys.file系统变量问题
官方文档中介绍的方式是使用系统变量sys.file,并且BODY是选择了binary,但是我试过了是不可以,请求到后端那边,后端无论是用MultipartFIle或者MultipartHttpServletRequest或者HttpServletRequest都会报错:
2024-12-24 10:22:45.684 ERROR 26176 --- [nio-9180-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Current request is not a multipart request] with root cause
2. SpringBoot参数接收
若是dify使用自定义上传变量,那后端用MultipartHttpServletRequest或者HttpServletRequest接收请求参数也会报错。常见的错误有两个:
1. Reached Maxium Retries (3) for URL xxxx
2. binary not found
后面尝试了多次,最终用MultipartFile参数接收成功了。