我正在寻找一种方法来实现从 jquery 到 Django-Tastypie 的客户端文件(图像)上传。
到目前为止,服务器端似乎使用 CURL 进行了正确的测试:
我发现这篇文章很有帮助 Django-tastypie: Any example on file upload in POST?
编辑:这就是我对 curl 所做的 ->
in api.py :
class MultipartResource(object):
def deserialize(self, request, data, format=None):
if not format:
format = request.META.get('CONTENT_TYPE', 'application/json')
if format == 'application/x-www-form-urlencoded':
return request.POST
if format.startswith('multipart'):
data = request.POST.copy()
data.update(request.FILES)
return data
return super(MultipartResource, self).deserialize(request, data, format)
class FooResource(MultipartResource, ModelResource):
img = fields.FileField(attribute="img", null=True, blank=True)
class Meta:
queryset = Foo.objects.all()
authorization= Authorization()
in models.py :
class Foo(models.Model):
img = models.ImageField(upload_to="images", null=True, blank=True)
body = models.CharField(max_length=255)
然后使用 curl 运行以下命令:
curl -v -F "body=test" -F "img=@my_picture.png" http://localhost:8000/api/v1/foo/
现在我试图用 jquery 作为客户端而不是 curl 来做同样的事情......没有运气。很难找到用于文件上传的 Jquery+Tastypie 的工作示例......
如果您有任何可用的简单示例,谢谢分享