else { this.$post("/school",{ "name": this.form.name, }).then(response => { this.$message("新增学校成功"); this.newList();
时间: 2024-02-10 07:06:36 浏览: 162
这段代码是在上一个问题中代码块的 `if` 语句中,当表单中的 `id` 为 `null` 时执行的操作。
具体来说,该方法调用 Vue.js 封装的 `$post()` 方法,将表单中的 `name` 作为请求参数,发送 POST 请求到 `/school` 接口,创建新的学校。
最后,如果创建成功,则弹出一条提示信息,关闭当前弹窗,然后调用 `newList()` 方法刷新页面数据。
阅读全文