2013-11-21 45 views
7

bu q & a Testere ama beklendiği gibi curl -v -F [email protected] http://127.0.0.1:3000/uploads/file her şey çalışıyor, kıvrılma yoluyla POST zaman benim dayı-düğüm-ekspres APIswagger-node-express: Dosya, swagger-ui'den nasıl yüklenir?

exports.saveFile = { 
    'spec' : { 
    "description" : "Saves a file to filesystem", 
    "path" : "/uploads/file", 
    "notes" : "", 
    "summary" : "POST a file to storage", 
    "method" : "POST", 
/* "supportedContentTypes" : [ 'multipart/form-data' ], */ 
    "produces":[ "application/json" ], 
    "consumes":[ "multipart/form-data" ], 
    "params" : [{ 
     "name": "File", 
     "description": "The file to upload.", 
     "paramType": "body", 
     "required": true, 
     "allowMultiple": false, 
     "dataType": "file" 
    } 
    ], 
    "responseClass" : "ArbitraryJson", 
    "errorResponses" : [ errors.invalid('file') ], 
    "nickname" : "saveFile" 
    }, 
    'action' : function(req, res) { 

    res.send('{"msg":"success", "file path": "' + req.files.file.path + '"}'); 

    } 
}; 

yılında aynı spesifikasyonları kullanarak OP How to post files in swagger?

aynı sonuçları yoktu. Swagger-ui (v 2.0.2) üzerinden gönderdiğimde başarısız oluyor. Her iki durumda da bir vekil kullandım ve swagger-ui içerik türünü belirtmiyor, ne de veriyi iletiyor. kıvrılma yoluyla

Kısaltılmış ham sonrası

POST http://127.0.0.1:3000/uploads/file HTTP/1.1 
User-Agent: curl/7.27.0 
Host: 127.0.0.1:3000 
Accept: */* 
Content-Length: 43947 
Expect: 100-continue 
Content-Type: multipart/form-data; boundary=----------------------------9af70f8a272c 

------------------------------9af70f8a272c 
Content-Disposition: form-data; name="file"; filename="scrot.png" 
Content-Type: application/octet-stream 
... 
------------------------------9af70f8a272c-- 

dayı-ui yoluyla ham yazı Kısaltılmış (yukarıdaki komutunu kullanarak)

POST http://127.0.0.1:3000/uploads/file HTTP/1.1 
Host: 127.0.0.1:3000 
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0 
Accept: application/json 
Accept-Language: en-US,en;q=0.5 
Referer: http://127.0.0.1:3000/docs/ 
Content-Length: 0 
Content-Type: text/plain; charset=UTF-8 
Connection: keep-alive 
Pragma: no-cache 
Cache-Control: no-cache 

benim rota/spec yapılandırmanız gerekir nasıl çalım-ui yayınlayacağız yüzden doğru şekilde?

+0

Hiç bu çözdü mü? Aynı şeye koşarak. – clay

+0

"body" yerine "paramType" öğesini "form" olarak ayarlamayı deneyin. – Ron

cevap

İlgili konular