首页 > 其他 > 详细

beego 作为中间层下载文件

时间:2019-12-11 15:43:52      阅读:125      评论:0      收藏:0      [点我收藏+]
// @router /other/download-video [*]
func (this *OtherController) DownLoadVideo() {
	link := this.GetString("link", "")
	if link == "" {
		this.toJson(-403, "args err", map[string]string{})
	}
	split := strings.Split(link, "/")
	sname := split[len(split)-1:][0]
	//this.Ctx.Output.Header("Content-type", "application/octet-stream")
	this.Ctx.Output.Header("Content-type", "application/force-download")
	this.Ctx.Output.Header("Content-Disposition", "attachment;filename="+sname)
	this.Ctx.Output.Header("Pragma", "No-cache")
	this.Ctx.Output.Header("Cache-Control", "No-cache")
	this.Ctx.Output.Header("Expires", "0")

	tr := &http.Transport{
		TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
	}
	client := &http.Client{Transport: tr}

	resp, err := client.Get(link)
	fmt.Println("download-video ==>  [xxx]  resp  ", resp)
	fmt.Println("download-video ==> [xxx]  err  err  ", err)
	if resp != nil {
		defer func() {
			resp.Body.Close()
		}()
	}

	//body, err := ioutil.ReadAll(resp.Body)

	_, err = io.Copy(this.Ctx.ResponseWriter, resp.Body)
	//fmt.Println(written)
	fmt.Println("download...   ", err)
	//this.Ctx.WriteString(string(body))
}

  

beego 作为中间层下载文件

原文:https://www.cnblogs.com/shijiu520/p/12022778.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!