Results 126 comments of LinkinStars

Thanks for using @Irving-yang [v0.3.0-alpha](https://github.com/answerdev/answer/releases) version has been released, please pull the latest docker image, if needed please follow the [documentation](https://github.com/answerdev/answer/blob/main/INSTALL_CN.md) . --- 感谢使用 @Irving-yang [v0.3.0-alpha](https://github.com/answerdev/answer/releases) 版本已经发布,请重新拉取镜像,如果需要请按照[文档](https://github.com/answerdev/answer/blob/main/INSTALL_CN.md)进行操作

可以支持,安排上了

v1.0.3版本已经支持

是的,比如你发送的参数是pic就会存到pic目录下面,你看看是不是参数传递的时候有问题,uploadSubPath首字母是小写的,这个参数不需要带有 / 这样的分隔符

目前没有这个api,是什么样的场景下需要用到呢?可以考虑一下

针对这个场景的话,文件上传完成之后,数据库肯定会保存上传后的路径,同时最好也保存相关路径前缀应该可以解决。

出现上面的错误应该是因为你上传的请求存在问题,看一下是否是因为Content-Type没有设置或者别的原因,与上传文件类型应该来说没有关系。我本地测试是没有问题的。或者你再描述一下具体出现问题的详细情景。 ![image](https://user-images.githubusercontent.com/19712692/60699610-529be480-9f27-11e9-83c5-7177d73c6b46.png)

目前不支持

应该会有跨域问题,不建议前端直接上传文件服务器,有暴露token和上传请求的风险,建议上传后端后交由后端进行统一处理

@jeevatkm I met same problem. The request just like this: ````bash curl --location --request POST 'http://127.0.0.1:8080/' \ --form 'name="test"' \ --form 'file=@"123.jpg"' \ --form 'file=@"456.png"' ```` Like you said, using...