我在Django项目中一步一步地实现了sorl-thumbnail,但是没有创建migrations thumbnail,所以图像没有通过发送表单添加,而是通过admin interface添加。我用途:
sorl-thumbnail
migrations thumbnail
admin interface
我做了什么。pip install pillow, sorl-thumbnail在INSTALLED_APPS中添加了'sorl.thumbnail'在模板中
pip install pillow, sorl-thumbnail
INSTALLED_APPS
'sorl.thumbnail'
n7taea2i1#
已 修正 此 问题 :我 不得 不 在 视图 函数 中 添加 这个 files=request.FILES or None,
files=request.FILES or None,
form = PostForm( request.POST or None, files=request.FILES or None,) if form.is_valid(): form.instance.author = request.user form.save() return redirect("posts:profile", request.user.username) return render(request, 'posts/create_post.html', {'form': form})```
中 的 每 一 个
1条答案
按热度按时间n7taea2i1#
已 修正 此 问题 :我 不得 不 在 视图 函数 中 添加 这个
files=request.FILES or None,
中 的 每 一 个