Hello the file field can store one file (basically it stores the path of the file) but you can do it like this:
create a model for your file:
class Document(models.model):
file = models.FileField()
article = models.ForeignKey(Article, on_delete=models.CASCADE)
when you want to save a file just create a Document object.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…