我想将文章和 Android 客户端发送到REST服务器。以下是服务器中的 Python 模型:
class Article(models.Model):
author = models.CharField(max_length=256, blank=False)
photo = models.ImageField()
以下界面描述了前一种实现:
@POST("/api/v1/articles/")
public Observable<CreateArticleResponse> createArticle(
@Body Article article
);
现在我想发送带有 Article 数据的图像。 photo
不属于 Android 客户端上 Article 模型的一部分。
@Multipart
@POST("/api/v1/articles/")
public Observable<CreateArticleResponse> createArticle(
@Part("article") Article article,
@Part("photo") TypedFile photo
);
使用 cURL 准备并成功测试了API。
$ curl -vX POST http://localhost:8000/api/v1/articles/ \
-H "Content-Type: multipart/form-data" \
-H "Accept:application/json" \
-F "author=cURL" \
-F "photo=@/home/user/Desktop/article-photo.png"
当我从 Android 客户端通过createArticle()
发送数据时,我收到HTTP 400
状态,指出字段是必需/缺失的。< / p>
D <--- HTTP 400 http://192.168.1.1/articles/ (2670ms)
D Date: Mon, 20 Apr 2015 12:00:00 GMT
D Server: WSGIServer/0.1 Python/2.7.8
D Vary: Accept, Cookie
D X-Frame-Options: SAMEORIGIN
D Content-Type: application/json
D Allow: GET, POST, HEAD, OPTIONS
D OkHttp-Selected-Protocol: http/1.0
D OkHttp-Sent-Millis: 1429545450469
D OkHttp-Received-Millis: 1429545453120
D {"author":["This field is required."],"photo":["No file was submitted."]}
D <--- END HTTP (166-byte body)
E 400 BAD REQUEST
这是在服务器端收到的request.data
:
ipdb> print request.data
<QueryDict: {u'article': [u'{"author":"me"}'], \
u'photo': [<TemporaryUploadedFile: IMG_1759215522.jpg \
(multipart/form-data)>]}>
如何在多部分符合数据类型中转换 Article 对象?我读到Retrofit可能允许Converters使用documentation。就我对HTML 4.01 Specification - Form submission - multipart/form-data所理解的而言,它应该是实现retrofit.mime.TypedOutput
的东西。
多部分使用
RestAdapter
转换器,或者他们可以实现TypedOutput
来处理自己的序列化。
答案 0 :(得分:25)
根据你的卷曲请求,你试图创建这样的smth:
POST http://localhost:8000/api/v1/articles/ HTTP/1.1
User-Agent: curl/7.30.0
Host: localhost
Connection: Keep-Alive
Accept: application/json
Content-Length: 183431
Expect: 100-continue
Content-Type: multipart/form-data; boundary=----------------------------23473c7acabb
------------------------------23473c7acabb
Content-Disposition: form-data; name="author"
cURL
------------------------------23473c7acabb
Content-Disposition: form-data; name="photo"; filename="article-photo.png"
Content-Type: application/octet-stream
‰PNG
<!RAW BYTES HERE!>
M\UUÕ+4qUUU¯°WUUU¿×ß¿þ Naa…k¿ IEND®B`‚
------------------------------23473c7acabb--
使用改装适配器,可以通过下一种方式创建此请求:
@Multipart
@POST("/api/v1/articles/")
Observable<Response> uploadFile(@Part("author") TypedString authorString,
@Part("photo") TypedFile photoFile);
用法:
TypedString author = new TypedString("cURL");
File photoFile = new File("/home/user/Desktop/article-photo.png");
TypedFile photoTypedFile = new TypedFile("image/*", photoFile);
retrofitAdapter.uploadFile(author, photoTypedFile)
.subscribe(<...>);
创建类似的输出:
POST http://localhost:8000/api/v1/articles/ HTTP/1.1
Content-Type: multipart/form-data; boundary=32230279-83af-4480-abfc-88a880b21b19
Content-Length: 709
Host: localhost
Connection: Keep-Alive
Accept-Encoding: gzip
User-Agent: okhttp/2.3.0
--32230279-83af-4480-abfc-88a880b21b19
Content-Disposition: form-data; name="author"
Content-Type: text/plain; charset=UTF-8
Content-Length: 4
Content-Transfer-Encoding: binary
cUrl
--32230279-83af-4480-abfc-88a880b21b19
Content-Disposition: form-data; name="photo"; filename="article-photo.png"
Content-Type: image/*
Content-Length: 254
Content-Transfer-Encoding: binary
<!RAW BYTES HERE!>
--32230279-83af-4480-abfc-88a880b21b19--
这里的关键区别是您使用POJO Article article
作为多部分参数,默认情况下由Converter
转换为json。而你的服务器需要普通的字符串。使用curl,您发送的是cURL
,而不是{"author":"cURL"}
。
答案 1 :(得分:2)
服务器期望&#34;作者&#34;字符串,但你试图传递一个&#34;文章&#34;宾语。传递它&#34;字符串作者&#34;而不是&#34;文章。&#34;
另外,我认为&#34;没有提交文件&#34;错误是一个红色的鲱鱼,因为该文件显然存在于您的&#34; request.data中。&#34;