html代码:
1
2
3
4
|
< form id="fform" method="POST" enctype="multipart/form-data">
< input id="myfile" name="myfile" type="file" />
< input type="submit" value="保存" />
</ form >
|
beego代码:
1
2
3
4
5
6
|
func (this *ServiceController) Upload() {
f, h, _ := this.GetFile( "myfile" ) //获取上传的文件
path := SDPATH + h.Filename //文件目录
f.Close() //关闭上传的文件,不然的话会出现临时文件不能清除的情况
this.SaveToFile( "myfile" , path) //存文件
} |
本文转自王磊的博客博客园博客,原文链接:http://www.cnblogs.com/vipstone/p/5395848.html,如需转载请自行联系原作者