私はモデル製品を持っています
とりわけ2つのフィールドのサイズと色があります
colours = models.CharField(blank=True, null=True, max_length=500)
size = models.CharField(blank=True, null=True, max_length=500)
私の見解では、
current_product = Product.objects.get(slug=title)
if len(current_product.size) != 0 :
current_product.size = current_product.size.split(",")
このエラーが発生します:
タイプ 'NoneType' のオブジェクトには len() がありません
NoneType とは何ですか?どうすればテストできますか?