这是我的代码
methods: {
async pay() {
this.$notify(`working`);
if (!this.$v.$invalid) {
try {
var data = {
to: this.to,
subject: this.subject,
};
let response = await axios
.post("http://localhost:4000/api/blogs", data)
.then(() => {
this.$notify(`email has been sent`);
})
.catch(error => {
const message = error.response.data.message;
this.$notify("Oh oo!", `${message}`, "error");
});
} catch (err) {
console.log(err);
}
}
}
}
我想显示
this.$notify(`email has been sent`);
立即发送了邮件但它不起作用即使我输入console。log或alert。then中的函数也不会通过
i get working from
this.$notify(`working`);
一旦我启动了这个功能,请问我该怎么做呢
这可能是你的后端我有同样的问题尝试添加
res.json({
status: true,
message: "save succes",
});