已经在我的项目中实现了chunkupload来进行文件夹上传。公开了一个休息api post方法。并从客户端调用它。当我们尝试在另一台服务器中移动同一段代码时,它在服务器中的运行情况非常好,响应为302。 &流程中止。 通常,它通常以异步模式进行10次以上的调用,以大块的形式上传文件集,但是在新服务器中,它失败了,第一个文件仍被上传,因此由于302响应,证明了第一次调用是成功的,它将中止剩余的块
在响应中也注意到,类型显示为text / html,其中假定为xhr或application / json
Asp.net应用程序(带有angular js)
.Name("files")
.Async(a => a
.Save("ChunkSave", "Upload")
.Remove("Remove", "Upload")
.AutoUpload(true)
.ChunkSize(1100)
)
)```
attached 2 images, one on success other one is failure
enter image description here
[enter image description here][1]
[1]: https://i.stack.imgur.com/9ByhH.jpg