1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-04 12:52:27 +08:00

remove unused code

This commit is contained in:
wenzl
2016-09-19 23:32:47 +08:00
parent 9ccffd09ed
commit 6727746f71

View File

@@ -46,43 +46,6 @@ func PostJSON(uri string, obj interface{}) ([]byte, error) {
//PostFile 上传文件
func PostFile(fieldname, filename, uri string) ([]byte, error) {
/*
bodyBuf := &bytes.Buffer{}
bodyWriter := multipart.NewWriter(bodyBuf)
fileWriter, err := bodyWriter.CreateFormFile(fieldname, filename)
if err != nil {
return nil, fmt.Errorf("error writing to buffer")
}
fh, err := os.Open(filename)
if err != nil {
return nil, fmt.Errorf("error opening file")
}
defer fh.Close()
_, err = io.Copy(fileWriter, fh)
if err != nil {
return nil, err
}
contentType := bodyWriter.FormDataContentType()
bodyWriter.Close()
resp, err := http.Post(uri, contentType, bodyBuf)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return nil, err
}
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return respBody, nil
*/
fields := []MultipartFormField{
{
IsFile: true,