[Vuejs]-Django model object with foreign key post

0👍

You missed this when referencing article from data. Without it, you are referencing the local variable article at the moment of its creation:

const article = {
                    auteur: this.article.auteur,
                    resume: this.article.resume,
                    motcles: this.article.motcles,
                    conference: this.article.conferences

                }

Leave a comment