- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在尝试编写一个 post 请求函数,将文件从 golang 服务器发送到客户端。代码从这里(golang POST data using the Content-Type multipart/form-data)抄了一点。无论出于何种原因,我总是收到“404 页面未找到”,即使通过 postman 完成的相同请求正在到达终点并成功返回。这是奇怪的行为,我不太确定如何调试。 (出于测试目的,我已经对 URL 进行了硬编码以访问本地运行的服务器。)
这是我的代码:
func PostUpload(values map[string]io.Reader, URL string){
fmt.Println("inside PostUpload in outbound")
client := &http.Client{}
var err error
var b bytes.Buffer
w := multipart.NewWriter(&b)
for key, r := range values {
var fw io.Writer
if x, ok := r.(io.Closer); ok {
defer x.Close()
}
// Add an image file
if x, ok := r.(*os.File); ok {
if fw, err = w.CreateFormFile(key, x.Name()); err != nil {
return
}
} else {
// Add other fields
if fw, err = w.CreateFormField(key); err != nil {
return
}
}
if _, err = io.Copy(fw, r); err != nil {
fmt.Println("there was an error")
fmt.Println(err)
}
}
w.Close()
// Now that you have a form, you can submit it to your handler.
// req, err := http.NewRequest("POST", URL, &b)
req, err := http.NewRequest("POST", "http://127.0.0.1:5000/upload", &b)
if err != nil {
fmt.Println("there was an error on http.NewRequest in outbound post file upload")
fmt.Println(err)
}
// Don't forget to set the content type, this will contain the boundary.
req.Header.Set("Content-Type", w.FormDataContentType())
requestDump, err := httputil.DumpRequest(req, true)
if err != nil {
fmt.Println(err)
}
fmt.Println(string(requestDump))
// Submit the request
resp, err := client.Do(req)
if err != nil {
fmt.Println("there was an error on client do in outbound post file upload")
fmt.Println(err)
}
resp_body, _ := ioutil.ReadAll(resp.Body)
var parsed map[string]interface{}
err = json.Unmarshal(resp_body, &parsed)
if err!=nil{
if typeof(resp_body)=="[]uint8"{
fmt.Println("received []uint8, converting and displaying")
fmt.Print(string(resp_body))
}else{
fmt.Println("inside unmarshal error")
fmt.Println(err)
}
}
return
}
这是控制台的输出:
api | 21:16:09 app | inside PostUpload in outbound
api | 21:16:09 app | POST /upload HTTP/1.1
api | Host: 127.0.0.1:5000
api | Content-Type: multipart/form-data; boundary=0ce8aee17e5d00524acd3875d8b4b41dba5f99d8a7796d56289e38f89c64
api |
api | --0ce8aee17e5d00524acd3875d8b4b41dba5f99d8a7796d56289e38f89c64
api | Content-Disposition: form-data; name="file"; filename="/uploads/TIME^2019-01-26 21:16:09.413514444 +0000 UTCFILE^Any_Publishing.txt"
api | Content-Type: application/octet-stream
api |
api | # © 2016 and later: Unicode, Inc. and others.
api | # License & terms of use: http://www.unicode.org/copyright.html#License
api | #
api | # File: Any_Publishing.txt
api | # Generated from CLDR
api | #
api |
api | # Variables
api | $single = \' ;
api | $space = ' ' ;
api | $double = \";
api | $back = \` ;
api |
api | --0ce8aee17e5d00524acd3875d8b4b41dba5f99d8a7796d56289e38f89c64--
api |
api | 21:16:09 app | received []uint8, converting and displaying
api | 404 page not found
有人看到哪里出了问题吗?
编辑:
有人建议注释掉 req 上的转储,因为它可能会消耗 req,而将请求留空。我试过了,结果和上面一样。
有人提到他们想查看上传成功的 curl 请求,所以这里是:
patientplatypus:~/Downloads:15:48:28$curl -X POST -F "file=@./catpic.jpg" http://127.0.0.1:5000/upload
file uploaded successfully!
带有 -v 标志的 curl 的完整转储:
patientplatypus:~/Downloads:15:48:42$curl -v -X POST -F "file=@./catpic.jpg" http://127.0.0.1:5000/upload
Note: Unnecessary use of -X or --request, POST is already inferred.
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to 127.0.0.1 (127.0.0.1) port 5000 (#0)
> POST /upload HTTP/1.1
> Host: 127.0.0.1:5000
> User-Agent: curl/7.54.0
> Accept: */*
> Content-Length: 264915
> Expect: 100-continue
> Content-Type: multipart/form-data; boundary=------------------------48411aa948b523e2
>
< HTTP/1.1 100 Continue
* HTTP 1.0, assume close after body
< HTTP/1.0 200 OK
< Content-Type: text/html; charset=utf-8
< Content-Length: 27
< Server: Werkzeug/0.14.1 Python/3.6.5
< Date: Sat, 26 Jan 2019 22:12:19 GMT
<
* Closing connection 0
file uploaded successfully!
有人提到他们想看看我试图攻击的服务器,所以这里是:https://github.com/patientplatypus/pythonServer
最佳答案
那个 404 错误字符串看起来和 Go 标准库生成的一样:
你确定你真的在点击 Flask 应用程序吗?
关于Golang http.NewRequest 总是返回 404 - Postman ok,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54382921/
Golang 有这两个相似的库 http 和 httptest 并且它们都有 NewRequest 函数。 如果 http.NewRequest 能做到这一切,为什么我们还需要 httptest.Ne
我尝试用这段代码解析一个页面: client := &http.Client{} profile := getEpiURL(login) log.Print("Fetch " + profile) r
我有以下代码将发布数据发送到服务器,但服务器未检测到请求中的任何发布数据。客户端代码: cookieJar, _ := cookiejar.New(nil) client := &ht
package main import ( "log" "net/http" ) func main() { // invalid method called "bad"
所以,我刚刚开始使用 Go,我正在尝试学习 HTTP 包。我在网上找到了这个程序 headers := make(map[string]string) headers["authorization"]
我们有一个接受 JSON 的 API。我们鼓励人们在发布之前对有效负载进行 gzip 压缩,因为我们对大小施加了限制。我想查看原始 JSON 和 gzip 压缩后的实际大小差异,但我似乎无法在构建后可
我有以下用于测试 http 请求的代码: func TestAuthenticate(t *testing.T) { api := &ApiResource{} ws := new(r
我正在尝试使用http.NewRequest()将数据从一个golang服务传递到另一个golang服务。为此,我使用了以下代码: httpClient := http.Client{
当使用 http.NewRequest("GET", url , nil) 用于包含 % 后跟某个数字的 URL 时,*示例:https://api.deutschebahn.com/freeplan
我正在创建一个请求 stub ,以便将其传递给被测试的函数: request := httptest.NewRequest("GET", "http://example.com/foo", nil)
我正在努力创建一个用于管理 DigitalOcean Droplets 的小控制台,但我遇到了这个错误: cannot use s (type []byte) as type io.Reader in
我最熟悉 Go 中的测试,但正在努力寻找一种方法来测试以下函数: func postJson(url string, jsonData []byte) error { req, err :=
go版本go1.8.1 windows/amd64 用于构建http请求的“net/http”包。 req, err := http.NewRequest("GET",`http://domain/_
我正在尝试编写一个 post 请求函数,将文件从 golang 服务器发送到客户端。代码从这里(golang POST data using the Content-Type multipart/fo
我对 Golang 还是个新手。你对如何在你的 Go 测试文件中有效地创建多个 httptest.NewRequest 有什么想法吗?通常我发起一个新变量两个创建新请求。 例如: r1 := http
我正在尝试使用 Go 的 http.POST 发布一个 struct,但是我没有成功。 请看: //SKUStock definition type SkuStock struct { Sku
当我尝试在 http.NewRequest 中使用 %2F 来包含“/”时,它会在调用 url.Parse() 时将其转换回“/”。有什么办法可以防止这种情况发生吗?我尝试将百分比转换为 %25,但它
我正在使用 http.NewRequest 发出 GET 请求。 我故意试图篡改 API url 只是为了检查我的错误处理是否有效。 但它没有按预期工作。返回错误值,我无法比较它。 jsonD
这是我的测试方法,它创建一个新请求并传递 POST 参数。 url1 := "/api/addprospect" data := url.Values{} data.Add("customer_nam
这一定很简单,但我不明白为什么在使用 go 发出 HTTP 请求时,请求的主体被包裹在一组额外的大括号中: package main import ( "bytes" "fmt"
我是一名优秀的程序员,十分优秀!