Javascript 在UpdateView Django中保存ImageField 我在剖面模型中有一个图像字段 我无法从模板保存图像 尝试使用django admin保存图像,它成功地保存了 图像并在更新视图中显示图像

Javascript 在UpdateView Django中保存ImageField 我在剖面模型中有一个图像字段 我无法从模板保存图像 尝试使用django admin保存图像,它成功地保存了 图像并在更新视图中显示图像,javascript,python,html,django,Javascript,Python,Html,Django,如何从前端而不是从django admin保存图像 型号 class Profile(models.Model): image = models.ImageField(upload_to='profile_images', null=True, blank=True) profile_email = models.CharField(max_length=30, null=True, blank=True) biography = models.C

如何从前端而不是从django admin保存图像

型号

class Profile(models.Model):
    image         = models.ImageField(upload_to='profile_images', null=True, blank=True)
    profile_email = models.CharField(max_length=30, null=True, blank=True)
    biography     = models.CharField(max_length=700, null=True, blank=True)
urlpatterns = [
    path('users/', include('users.urls', namespace='users')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR = os.path.join(BASE_DIR,'templates')
STATIC_DIR = os.path.join(BASE_DIR,'static')
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    STATIC_DIR,
]
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
查看

class ProfileSettingsView(UpdateView):
    model = Profile
    form_class = ProfileSettingsForm
    pk_url_kwarg = 'pk'
    context_object_name = 'object'
    template_name = 'profile_settings.html'

    def get_success_url(self):
          return reverse_lazy('users:profile_settings', args = (self.object.id,))
模板

{% if object.image %}
<a href=""><img style="border-radius:50%; text-align:center; margin-bottom: 20px; border: 2px solid #00a6eb;" class="center" src="{{ object.image.url }}"alt=""></a>
{% endif %}

<label style="display: inline-block" for="file-upload" class="custom-file-upload">
    <i class="fa fa-cloud-upload"></i> Upload Photo
</label>
<input id="file-upload" name="image" onchange="this.form.submit()" type="file"/>
设置

class Profile(models.Model):
    image         = models.ImageField(upload_to='profile_images', null=True, blank=True)
    profile_email = models.CharField(max_length=30, null=True, blank=True)
    biography     = models.CharField(max_length=700, null=True, blank=True)
urlpatterns = [
    path('users/', include('users.urls', namespace='users')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR = os.path.join(BASE_DIR,'templates')
STATIC_DIR = os.path.join(BASE_DIR,'static')
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

STATIC_URL = '/static/'
STATICFILES_DIRS = [
    STATIC_DIR,
]
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
表格

class ProfileSettingsForm(forms.ModelForm):

    class Meta:
        model = Profile

        fields = ['image','full_name','biography','profile_email','linked_in','facebook',
                  'twitter','phone','education']

        widgets = {
            'image'          : forms.TextInput({'class': 'form-control'}),
            'full_name'      : forms.TextInput({'class': 'form-control'}),
            'profile_email'  : forms.TextInput(attrs={'readonly': True}),
            'biography'      : forms.Textarea({'rows':'10'}),
            'twitter'        : forms.TextInput({'class': 'form-control'}),
            'linked_in'      : forms.TextInput({'class': 'form-control'}),
            'facebook'       : forms.TextInput({'class': 'form-control'}),
            'phone'          : forms.TextInput({'class': 'form-control'}),
        }

将图像小部件更改为
FileInput

widgets = {
    'image' : forms.FileInput(attrs={'class': 'input-image-control'}),
    ...

您是否在表单中添加了
{%csrf\u token%}