這裏無效關鍵字的說法是錯誤: 'image' is an invalid keyword argument for this function
瞭解正在發生什麼,以及如何解決這個問題,將不勝感激任何幫助。 基本上我有一個'合作伙伴'模型,它與'產品'模型有一對多的關係。我使用的是inlineFormSet,其中包含合作伙伴,圖片,desc,價格等字段的'產品'模型。 表單在管理中正確顯示,表單
我試圖製作一個名爲MuyPicky的Django開發網站。這是一個網站,可以讓你根據你的挑剔找到餐館和其他東西。我目前正在製作一個表格,將餐廳添加到數據庫中。正如我在做這個,我得到這個錯誤: IntegrityError at /restaurants/create.
NOT NULL constraint failed: restaurants_restaurantlocation.name
假設,我有下面兩個表: enter image description here 我做了models.py: class Score(models.Model):
Student_Id = models.CharField(max_length=20, primary_key=True)
Grade = models.CharField(max_length=30)