如何使用koa删除json的一条数据

module.exports = {

    'GET /': async(ctx, next) => {

        //获取数据

        var fs = require('fs');

        var datas = JSON.parse(fs.readFileSync('./date.json', 'utf-8'));

        //渲染模板

        ctx.render('index.html', { res: datas });

    },


    'GET /del/:id': async(ctx, next) => {


        console.log(ctx.response);

    }

};


aluckdog
浏览 396回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript