使用 node-fetch 将带有 GET 和 data-urlencode 选项的 cURL 命令转换为 javascript

Convert a cURL command with the GET and data-urlencode options to javascript using node-fetch

我正在使用 node.js 和 express.js 开发网络应用程序。

这是我想使用 node-fetch 模块将其转换为 javascript 的有效 cURL 命令。

curl -X GET -H "X-Parse-Application-Id: APPLICATION_ID" -H "X-Parse-REST-API-Key: restAPIKey" -G --data-urlencode "count=1" --data-urlencode "limit=0" http://localhost:1337/parse/classes/GCUR_LOCATION

如何将 data-urlencode 参数放入以下代码片段中以完成 javascript 工作?

fetch('http://localhost:1337/parse/classes/GCUR_LOCATION', { method: 'GET', headers: {
    'X-Parse-Application-Id': 'APPLICATION_ID',
    'X-Parse-REST-API-Key': 'restAPIKey'
}});

使用querystring.

const querystring = require('querystring');

const query = querystring.stringify({ count: 1, limit: 0 });
const url = `http://localhost:1337/parse/classes/GCUR_LOCATION?${query}`;
fetch(url, { 
    method: 'GET', 
    headers: {
        'X-Parse-Application-Id': 'APPLICATION_ID',
        'X-Parse-REST-API-Key': 'restAPIKey'
    }
});