快速问题:如何将文件与 django 中的 ImageField 关联?
我的硬盘上保存了一个图像,我想将其分配给 ImageField,但我不知道如何操作。
我尝试过这样的事情: object.imagefield.save(路径,文件(打开(路径)))
但这会生成图像的附加(无效)副本。
有人可以帮我吗?
谢谢!
i have an image saved on my HDD and i want to assign it to an ImageField, but i don't know how.
i've tried something like this:object.imagefield.save(path,File(open(path)))
But this makes an additional (invalid) copy of the image.
Can someone help me please?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通常只是简单地为图像字段分配一个带有图像路径的字符串,如下所示:
我不知道这样做是否有问题,但它总是有效的。
I usually simply assign to the image field a string with the image's path, like this:
I don't know if there is something wrong in doing that, but it always works.
可能有更好的方法,但我做了类似的事情:
There might be a better way, but I do something like: