我是 Django 框架的新手,现在在忘记密码功能方面遇到了麻烦。我已阅读有关该功能的文档,但有些不清楚。我需要有人可以更详细地向我展示前端和后端的步骤。
reset() {
var self = this;
axios
.post(this.$apiUrl + "password/reset/", {
email: self.email
})
.then(response => {
console.log(response);
})
.catch(error => {
console.log(error);
});
}