Python-3.x
查看历史

Related

Django change an existing field to foreign key

I have a Django model that used to look like this:class Car(models.Model): manufacturer_id = models.IntegerField()There is another model called Manufacturer that the id field refers to. However, I realized that it would be useful to use Django's built-in foreign key functionality, so I changed the model to this:class Car(models.Model): manufacturer = models.ForeignKey(Manufacturer)This change appears to work fine immediately, queries work without errors, but when I try to run migrations, Django outputs the following:- Remove field manufacturer_id from car - Add field manufacturer to carDoing this migration would clear all the existing relationships in the database, so I don't want to do that. I don't really want any migrations at all, since queries like Car.objects.get(manufacturer__name="Toyota") work fine. I would like a proper database foreign key constraint, but it's not a high priority.So my question is this: Is there a way to make a migration or something else that allows me to convert an existing field to a foreign key? I cannot use --fake since I need to reliably work across dev, prod, and my coworkers' computers.内容来源于 Stack Overflow, 遵循 CCBY-SA 4.0 许可协议进行翻译与使用。原文链接:Django change an existing field to foreign key
2024-08-17 16:03:04

Python的__str__()方法

Python的__str__()方法说明:本文章的Python代码测试基于Python3.x__str__()方法的作用:不定义__str__方法,print输出对象实例时,默认打印对象实例的内存地址定义__str__方法,print输出对象实例时,自动调用此方法返回值必须是字符串在Python中,方法名形如__xxx__()的方法表示此方法具有特殊的功能,也称为魔法方法验证1. 不定义__str__方法,print输出对象实例时,默认打印的是对象的内存地址# 创建学生类 class Stu(): def __init__(self, name, age): self.name = name self.age = age s = Stu("张三", 18) print(s)输出:<__main__.Stu object at 0x000002526AF05A60>2. 定义__str__方法,print输出对象实例时,自动调用此方法class Stu(): def __init__(self, name, age): self.name = name self.age = age def __str__(self): return "学生" + self.name + "的年龄是" + str(self.age) s = Stu("张三", 18) # 打印对象实例 print(s) 输出:学生张三的年龄是183. 返回值必须是字符串class Stu(): def __init__(self, name, age): self.name = name self.age = age def __str__(self): return self.age s = Stu("张三", 18) print(s)输出:--------------------------------------------------------------------------- TypeError Traceback (most recent call last) 7 8 s = Stu("张三", 18) ----> 9 print(s) TypeError: __str__ returned non-string (type int)因为__str__()返回值非字符串,所以报错TypeError: __str__ returned non-string (type int)原文链接:https://blog.csdn.net/what_how_why2020/article/details/114748495
2024-08-29 11:21:32

(✅已修复)弦圈编辑器上传图片已知bug,未知原因导致上传图片模糊

这是个很早之前就存在的bug了,一直都没解决,并且我也不知道具体是什么原因。原本这个bug也只是偶尔发生,已经有很长一段时间没有再遇过了。结果今天我写Android Studio安装教程 - Windows版这篇文章的时候,又遇到这个问题了。刚刚上传前面几张图片的时候一切正常,直到上传最后几张图片时,我发现上传的照片又很糊了,并且无论上传多少次,按多少比例截图,最后结果都一样。而且无论是复制来的图片,还是直接上传图片,都一样。见下面几张图这些图片都是原图很清晰,但上传后就很糊了。目前已确定问题发生在Django后端,具体原因仍在排查当中......更新:经过排查,确定问题跟图片模型有关系,我使用了django-resized的ResizedImageField来将上传的图片转化为webp格式。一般正常使用都是没事的,但是有些时候上传图片的次数多了以后,就会出现这种bug。为什么会出现这个问题,即便我看过django-resized源代码也不清楚,搞不好是pillow的问题?但我觉得应该跟它无关。最后我将ResizedImageField改回了ImageField,然后自己用pillow来实现webp的转换,目前测试已经没问题了。
2025-03-26 21:50:41