启迪断点续传文件上传协议与Gin-Gonic CORS问题集成
来源:stackoverflow
时间:2024-04-15 16:18:39 334浏览 收藏
从现在开始,努力学习吧!本文《启迪断点续传文件上传协议与Gin-Gonic CORS问题集成》主要讲解了等等相关知识点,我会在golang学习网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就先一起来看一下本篇正文内容吧,希望能帮到你!
问题内容
我在这里查看了与 gin 和 tus 的 cors 问题相关的类似问题;没有一个能解决我目前遇到的问题。
当前实现通过添加一个小包装器与标准 net/http 包配合使用。
// the wrapping function func enablecors(w *http.responsewriter) { (*w).header().set("access-control-allow-origin", "*") } // simplified version of the code composer := tusd.newstorecomposer() store.usein(composer) handler, err := tusd.newhandler(tusd.config{ basepath: "/files/", storecomposer: composer, notifycompleteuploads: true, }) if err != nil { panic(fmt.errorf("unable to create handler %s", err)) } go func() { for { fmt.println("waiting for upload to complete") event := <-handler.completeuploads fmt.printf("uploads %s finished\n", event.upload.storage) } }() http.handle("/files/", func(next http.handler) http.handler { return http.handlerfunc(func(w http.responsewriter, r *http.request) { enablecors(&w) next.servehttp(w, r) }) }(http.stripprefix("/files/", handler))) err = http.listenandserve(":8080", nil) if err != nil { panic(fmt.errorf("unable to listen: %s", err)) }
这是我用杜松子酒尝试过的。我将处理程序包装在 gin.wraph() 中。我添加了默认的 gin cors 库中间件,但 cors 错误仍然没有消失。 这不起作用
func TusHandler() http.Handler { store := filestore.FileStore{ Path: "./uploads", } composer := tusd.NewStoreComposer() store.UseIn(composer) handler, err := tusd.NewHandler(tusd.Config{ BasePath: "/upload/tus/", StoreComposer: composer, NotifyCompleteUploads: true, }) if err != nil { panic(err) // This is to simplify the code } return handler } // The routing import "github.com/gin-contrib/cors" router := gin.Default() router.Use(cors.Default()) router.GET("/upload/tuts", gin.WrapH(uploader.TusHandler()))
这是我的浏览器输出。 当我尝试上传指向 gin 版本的文件时
gin 集成不断显示 cors 错误。这就是我正在努力解决的问题。
解决方案
tus.io 正在向服务器发送一堆标头,因此您需要将这些标头添加到您的 cors 配置中。错误消息表明不允许使用名为 tus-resumable
的标头,您需要将此标头与 tus.io 发送的其他标头一起添加。并公开一些标头,以便 tus-js-client 可以读取它。
router.use(cors.new(cors.config{ allowallorigins: true, // alloworigins: []string{"http://example.com"}, allowmethods: []string{"get", "post", "put", "patch", "delete", "head", "options"}, allowheaders: []string{"authorization", "x-requested-with", "x-request-id", "x-http-method-override", "upload-length", "upload-offset", "tus-resumable", "upload-metadata", "upload-defer-length", "upload-concat", "user-agent", "referrer", "origin", "content-type", "content-length"}, exposeheaders: []string{"upload-offset", "location", "upload-length", "tus-version", "tus-resumable", "tus-max-size", "tus-extension", "upload-metadata", "upload-defer-length", "upload-concat", "location", "upload-offset", "upload-length"}, }))
此外,如果您已经有一个正在运行的应用程序,则可以使用 newunroutedhandler 而不是 newhandler。
handler := dtushandler() router.post("/files/", gin.wrapf(handler.postfile)) router.head("/files/:id", gin.wrapf(handler.headfile)) router.patch("/files/:id", gin.wrapf(handler.patchfile)) router.get("/files/:id", gin.wrapf(handler.getfile))
这是 dtushandler 函数:
func dTusHandler() *tusd.UnroutedHandler { store := filestore.FileStore{ Path: "./uploads", } composer := tusd.NewStoreComposer() store.UseIn(composer) h, err := tusd.NewUnroutedHandler(tusd.Config{ BasePath: "/files/", StoreComposer: composer, NotifyCompleteUploads: true, }) if err != nil { panic(fmt.Errorf("Unable to create handler: %s", err)) } go func() { for { event := <-h.CompleteUploads fmt.Printf("Upload %s finished\n", event.Upload.ID) } }() return h }
以上就是《启迪断点续传文件上传协议与Gin-Gonic CORS问题集成》的详细内容,更多关于的资料请关注golang学习网公众号!
声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习