web-dev-qa-db-ja.com

Node.js:req.query []とreq.paramsの違い

Req.query [myParam]とreq.params.myParamを介してQUERY_STRING引数を取得するのに違いはありますか?もしそうなら、いつどれを使うべきですか?

ありがとう。

93
user1598019

req.params には(URLのパス部分に)ルートパラメータが含まれ、 req.query にはURLクエリパラメータ(URLの?の後)が含まれます。

req.param(name) を使用して両方の場所でパラメーターを検索することもできます(req.bodyと同様)が、このメソッドは非推奨になりました。

106
JohnnyHK

このルートを考える

app.get('/hi/:param1', function(req,res){} );

このURLを指定するとhttp://www.google.com/hi/there?qs1=you&qs2=tube

あなたが持っています:

req。query

{
  qs1: 'you',
  qs2: 'tube'
}

req。params

{
  param1: 'there'
}

Express req.params >>

208
ruffrey

これで、ドット表記を使用してクエリにアクセスできるようになります。

/checkEmail?type=email&utm_source=xxxx&email=xxxxx&utm_campaign=XXGETリクエストを受信して​​いて、使用したqueryを取得したい場合にアクセスしたい場合。

var type = req.query.type,
    email = req.query.email,
    utm = {
     source: req.query.utm_source,
     campaign: req.query.utm_campaign
    };

Paramsは、リクエストを受信するための自己定義パラメーターに使用されます(例):

router.get('/:userID/food/edit/:foodID', function(req, res){
 //sample GET request at '/xavg234/food/edit/jb3552'

 var userToFind = req.params.userID;//gets xavg234
 var foodToSearch = req.params.foodID;//gets jb3552
 User.findOne({'userid':userToFind}) //dummy code
     .then(function(user){...})
     .catch(function(err){console.log(err)});
});
7
Animesh Singh

次のようにルート名を定義したとします:

https://localhost:3000/user/:userid

次のようになります:

https://localhost:3000/user/5896544

ここで、印刷する場合:request.params

{
userId : 5896544
}

そう

request.params.userId = 5896544

request.paramsは、名前付きルートへのプロパティを含むオブジェクトです

およびrequest.queryは、URLのクエリパラメータから取得されます。例:

https://localhost:3000/user?userId=5896544 

request.query

{

userId: 5896544

}

そう

request.query.userId = 5896544

5
Deeksha Sharma

req.queryに関する重要な注意点を1つ挙げたいと思います。現在、req.queryに基づいたページネーション機能に取り組んでおり、興味深い例を示しています。

例:

// Fetching patients from the database
exports.getPatients = (req, res, next) => {

const pageSize = +req.query.pageSize;
const currentPage = +req.query.currentPage;

const patientQuery = Patient.find();
let fetchedPatients;

// If pageSize and currentPage are not undefined (if they are both set and contain valid values)
if(pageSize && currentPage) {
    /**
     * Construct two different queries 
     * - Fetch all patients 
     * - Adjusted one to only fetch a selected slice of patients for a given page
     */
    patientQuery
        /**
         * This means I will not retrieve all patients I find, but I will skip the first "n" patients
         * For example, if I am on page 2, then I want to skip all patients that were displayed on page 1,
         * 
         * Another example: if I am displaying 7 patients per page , I want to skip 7 items because I am on page 2,
         * so I want to skip (7 * (2 - 1)) => 7 items
         */
        .skip(pageSize * (currentPage - 1))

        /**
         * Narrow dont the amound documents I retreive for the current page
         * Limits the amount of returned documents
         * 
         * For example: If I got 7 items per page, then I want to limit the query to only
         * return 7 items. 
         */
        .limit(pageSize);
}
patientQuery.then(documents => {
    res.status(200).json({
        message: 'Patients fetched successfully',
        patients: documents
    });
  });
};

+req.query.pageSizeの前にreq.query.currentPageのサインがあることに気づくでしょう

どうして?この場合に+を削除すると、エラーが発生します。無効なタイプを使用するため、エラーがスローされます(エラーメッセージ「limit」フィールドは数値でなければなりません)。

重要:これらのクエリパラメータから何かを抽出する場合、デフォルトでは常に文字列になります。URLが来て、テキストとして扱われるためです。

数値を処理し、クエリステートメントをテキストから数値に変換する必要がある場合は、ステートメントの前にプラス記号を追加するだけです。

0
Mile Mijatovic