Response和Request获取参数的方法

时间:2024-02-19 11:24:08

1、Get方法使用Request获取参数:

    1⃣️  比如路由文件如下:

      router.get(\'/app/:appId/env\',appController.getEnvList);

    2⃣️  Controller文件中的getEnvList方法可以通过Request获取Get中的 appId 参数:

     exports.getEnvList = function (req, res, next) {

     var appId = req.params.appId;

     }

  3⃣️  如果参数没有在Path路径中,而是在 ?后面的参数 ,那么这个时候应该调用 req.query.planId 来获取参数