api接口暴露

测试接口是否正常,我们可以使用测试工具:postman insomnia

BE: BackEnd 后端

  • express中一个路由即一个接口,二级路由写在routes文件夹里面对应的.js文件里

  • api接口暴露的方式有两种:

    • 第一种: 使用模板进行暴露,但是要将数据做字符串转换,然后使用ejs的非转义输出
      router.get('/',function( req,res,next ) {
           
        res.render('mine', {
           
          mine: JSON.stringify({
           
            ret: true,
            username: 'yyb',
            password: 123
          })
        })
      })
    
    • 第二种: 使用json()
      router.get('/',function( req,res,next ) {
           
        res.json({
           
          ret: true,
           username: 'yyb',
           password: 123
         })
      })
    

你可能感兴趣的:(api接口暴露)