在django上使用Amazon S3使用ImageField上传图像

时间:2014-06-18 07:59:20

标签: python django amazon-web-services amazon-s3 django-models

我用pip安装了django-storages(pip install django-storages)

使用AWS首选项进行设置:

DEFAULT_FILE_STORAGE = 'storages.backends.s3.S3Storage'
AWS_STORAGE_BUCKET_NAME = 'bar.media'
AWS_ACCESS_KEY_ID = 'MyAwesomeKeyId'
AWS_SECRET_ACCESS_KEY = 'BlahBlahBlah'

我得到了这样的模型:

def Bar(Model):
   image = models.ImageField(upload_to='bar')

在forms.py上:

 class BarForm(forms.Form):
     image = forms.FileField(label='Logo',required=False)
     def __init__(self, *args, **kwargs):
            super(BarForm, self).__init__(*args,**kwargs)
            self.fields['image'].label='My Awesome Photo'
在views.py上

     @csrf_exempt
     def bar_web(request):
         context = {}
         if request.method == 'POST':
            form = BarForm(request.POST, request.FILES)
            context['form'] = form
            if form.is_valid():
                    try:
                            logoFile = request.FILES['image']
                            print 'PIC: '+str(logoFile)
                    except:
                            logoFile = False 
                    if logoFile:
                          bar = Bar(image=logoFile)
                          bar.save()
                          bar.reload()

在模板上:

         <p>Image Name: {{bar.image.name}}</p>
         <p>Image Url: {{bar.image.url}}</p>
         <p>Image : {{bar.image.content_type}}</p>
         <p>Image Path: {{bar.image.path}}</p>

但没有印刷。

我在打印件上看到了当前的文件名;但是s3没有任何反应。没有上传文件。

我没看到的错误是什么?

1 个答案:

答案 0 :(得分:1)

我的问题是IAM配置错误;这些视频可能有助于其他用户...

https://www.youtube.com/watch?v=JuffWMBeJkw