模块的删除

1.在终端启动app.js

模块的删除

2.创建模块的字段

 

 

//导入mongoose
const mongoose = require("mongoose");
//建立数据库连接
mongoose.connect("mongodb://127.0.0.1:27017/test");

const tagSchema = new mongoose.Schema({
    // text:String,
    text: {
        type: String,
        minlength: 2,
        maxlength: 12
    }
});
const contentSchema = new mongoose.Schema({
    title: {
        type: String,
        minlength: 6,
        maxlength: 12
    },
    content: {
        type: String,
        minlength: 10,
        maxlength: 50
    },
    top: {
        type: Boolean
    }
});
const userSchema = new mongoose.Schema({
    username: {
        type: String,
        minlength: 2,
        maxlength: 12
    },
    password:{
        type: String,
        minlength: 6,
        maxlength: 12
    },
    email:{
        type: String,
        minlength: 6,
        maxlength: 20
    },
    group:{
        type: String,
        minlength: 4,
        maxlength: 12
    }
});
const tagModel = new mongoose.model("tag", tagSchema);
const contentModel = new mongoose.model("content", contentSchema);
const userModel = new mongoose.model("user", userSchema);

 

3.导出成功和失败的函数

模块的删除

 4.

 模块的删除

    获取参数的方式     get     ctx.query     post    ctx.request.body     delete  ctx.request.body     put修改     ctx.query  ctx.request.body   模块的删除

 

//导出
module.exports = function (router) {
    router.get("/tag", async (ctx) => {
        try{
            const data=await tagModel.find({});//await 等待
            return success(ctx,data);
        }catch(error){
            return fail(ctx,error)
        }
    })
    router.post("/tag",async ctx=>{
        try{
            const data=await tagModel.create(ctx.request.body);//await 等待
            return success(ctx,data);
        }catch(error){
            return fail(ctx,error)
        }
    })
    router.delete("/tag",async ctx=>{
        try{
            const data=await tagModel.deleteOne(ctx.request.body);//await 等待
            return success(ctx,data);
        }catch(error){
            return fail(ctx,error)
        }
    })
}

删除

模块的删除

 

 5.text.js中,测试页面

模块的删除

 

 

模块的删除

 

模块的删除

 

 

 

 

 

 

上一篇:mongoose查询条件不起限制作用求解答……


下一篇:mongoose 导出模块多页使用