美文网首页
express mongoDB 新增与POST

express mongoDB 新增与POST

作者: Jay_ZJ | 来源:发表于2019-06-14 22:53 被阅读0次

    POST

    相比 GET 更安全,拥有更大的数据容量

    POST使用

    app.use(express.json())  // 允许express解析提交的json数据
    ...
    app.post('/products', async function (req, res) => {
      const data = req.body;  // 客户端传递的数据
      const product = await Product.create(data) //用Model.create(data)向数据库写入数据
      res.send(product );
    });
    

    测试接口

    vs code 下载插件 REST Client
    新建 text.http

    @uri=http://localhost:3000/
    ###
    GET {{ uri }}products
    ###
    POST {{ uri }}products
    Content-type: application.json
    
    {
      "title": "产品4"
    }
    
    

    相关文章

      网友评论

          本文标题:express mongoDB 新增与POST

          本文链接:https://www.haomeiwen.com/subject/vgwmfctx.html