gpt4 book ai didi

python - 允许用户更改其图片。 Django

转载 作者:行者123 更新时间:2023-12-04 05:22:26 25 4
gpt4 key购买 nike

在我的应用程序中,我允许用户拥有个人资料照片。我希望他们能够改变它。令人惊讶的是,我没有找到任何关于如何实现它的信息。

这是我尝试过的:

模型.py

        class UserProfile(FacebookProfileModel):
user = models.OneToOneField(User)
profilepic = models.ImageField(upload_to="profilepics/", default="blabla.jpg")

我的 html:

       <form method='post' action='{%url myproject.views.changes %}>
<div class="controls">
<input type="file" name="image">
</div>
<input type="submit">
</form>

我的看法:

      def changes(request):
if 'image' in request.POST:
image = request.POST.get('image')
userprofile.profilepic.url = image
userprofile.save()

当我这样做时,我收到以下错误消息:

       'AttributeError at /my/site/
can't set attribute'

关于如何实现它的任何想法?谢谢

最佳答案

确保先请求 UserProfile 对象,然后

看起来你应该使用

image = request.FILES['image']
userprofile.profilepic = image

代替

image = request.POST.get('image')
userprofile.profilepic.url = image

参见 This example , views.py 部分,正如 Jake 所说

关于python - 允许用户更改其图片。 Django ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13565218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com