マルチフォームをtastypieに投稿しようとしています。
Django モデルは次のとおりです。
class Message(models.Model):
recipient = models.ForeignKey(User, null=True, related_name='recipient')
おいしいパイのリソース:
class MessageResource(MultipartResource, BaseResource):
recipient = fields.ToOneField(UserResource, 'recipient',full=True)
フォーム データの一部:
POST /api/message/ HTTP/1.1
Host: 127.0.0.1:8286
Content-Type: multipart/form-data; boundary=Boundary+0xAbCdEfGbOuNdArY
Accept: application/json
Content-Length: 6462
Accept-Language: en;q=1, fr;q=0.9, de;q=0.8, ja;q=0.7, nl;q=0.6, it;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive
User-Agent: C/1.0 (iPhone Simulator; iOS 6.1; Scale/1.00)
--Boundary+0xAbCdEfGbOuNdArY
Content-Disposition: form-data; name="fetched"
0
--Boundary+0xAbCdEfGbOuNdArY
Content-Disposition: form-data; name="recipient[id]"
2
--Boundary+0xAbCdEfGbOuNdArY
Content-Disposition: form-data; name="recipient[username]"
joe
--Boundary+0xAbCdEfGbOuNdArY
Content-Disposition: form-data; name="text"
test
--Boundary+0xAbCdEfGbOuNdArY
Content-Disposition: form-data; name="image"; filename="photo.png"
Content-Type: image/png
<binary data>
受信者は関連オブジェクトであるため、その属性は括弧内にあります。Tastypie はこれが関連オブジェクトであることを認識せず、POST は失敗します。
私は何が欠けていますか?