我的Django模型是這樣的: class User(models.Model):
userid = models.CharField(max_length=26,unique=True)
#some more fields that are currently not relevant
class Followers(models.Model):
user =
我有一個使用.Net Core 2.0在Visual Studio 2017中開發的項目的基本模型。型號以下 public class QuoteModel : BaseModel{
public QuoteModel()
{
GetQuoteItems = new List<QuoteItemModel>();
}
[Required]
我是相當新到Python/Django和我有以下問題。 class Foo:
name = models.CharField(max_length=10)
class Bar:
othername = models.CharField(max_length=10)
othername2 = models.CharField(max_length=10)
我對django很陌生。在爲我正在編寫的應用程序編寫模型時,由於我用於單個模型的所有外鍵(我的票模型是特定的),我覺得自己做錯了一些事情。 我在開始時的想法是我希望每張門票都能保存其創建者的信息,該門票分配的隊伍以及門票上的註釋。和其他不需要外鍵的信息。我做對了嗎?我不知道爲什麼,但我覺得有更好的方法。 class Team(models.Model):
name = models.Ch