Share the introduction of queryString in NodeJS
Previous words
Whether it is front-end or back-end, a common application scenario is the processing of parameters in URLs. The nodeJS queryString module provides some tools for processing query strings. This article will introduce in detail queryString
var querystring = require('querystring');/*{ unescapeBuffer: [Function], unescape: [Function: qsUnescape], escape: [Function], encode: [Function], stringify: [Function], decode: [Function], parse: [Function] } */console.log(querystring);
serialization
[querystring.parse(str[, sep[, eq[, options ]]])】
The querystring.parse() method can parse a URL query string (str) into a collection of key-value pairs. The parameters are as follows
str <String> 要解析的 URL 查询字符串。 sep <String> 用于界定查询字符串中的键值对的子字符串。默认为 '&'。 eq <String> 用于界定查询字符串中的键与值的子字符串。默认为 '='。 options <Object>decodeURIComponent <Function> 当解码查询字符串中百分号编码的字符时使用的函数。默认为 querystring.unescape() maxKeys <number> 指定要解析的键的最大数量。默认为 1000。指定为 0 则移除键数的限制
var querystring = require('querystring');var str = 'foo=bar&abc=xyz&abc=123'; console.log(querystring.parse(str));//'{ foo: 'bar', abc: [ 'xyz', '123' ] }'
The second parameter is used to define the substring of the key-value pair in the query string
var querystring = require('querystring');var str = 'foo=bar&abc=xyz&abc=123'; console.log(querystring.parse(str,'a'));//{ foo: 'b', 'r&': '', bc: [ 'xyz&', '123' ] }
The third parameter is used to define the query string The substring of the key and value in
var querystring = require('querystring');var str = 'foo=bar&abc=xyz&abc=123'; console.log(querystring.parse(str,'&','c'));//{ 'foo=bar': '', ab: [ '=xyz', '=123' ] }
[Note] The object returned by the querystring.parse() method does not inherit from JavaScript’s Object. This means that typical Object methods such as obj.toString(), obj.hasOwnProperty(), etc. are not defined and cannot be used
By default, percent-encoded characters in the query string will be considered UTF-8 encoding is used. If another character encoding is used, the decodeURIComponent option needs to be specified
var querystring = require('querystring');//{ w: '����', foo: 'bar' }console.log(querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null,{ decodeURIComponent: 'gbkDecodeURIComponent' }));
[querystring.stringify(obj[, sep][, eq][, options])】
The querystring.stringify() method is the reverse operation of the querystring.parse() method. It generates a URL query string from a given obj by traversing the object's own properties. The parameters are as follows
obj <Object> 要序列化成一个 URL 查询字符串的对象 sep <String> 用于界定查询字符串中的键值对的子字符串。默认为 '&'eq <String> 用于界定查询字符串中的键与值的子字符串。默认为 '='options encodeURIComponent <Function> 当把对URL不安全的字符转换成查询字符串中的百分号编码时使用的函数。默认为 querystring.escape()
var querystring = require('querystring');//'foo=bar&baz=qux&baz=quux&corge='console.log(querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' }));
var querystring = require('querystring');//'foo:bar;baz:qux'console.log(querystring.stringify({foo: 'bar', baz: 'qux'}, ';', ':'));
Encoding
【querystring.escape(str)】
Querystring The .escape() method performs URL percent encoding on the given str, the same as the encodeURIComponent method
The querystring.escape() method is used by querystring.stringify() and is usually not used directly. The reason why it is open to the outside world is that the encoding implementation can be rewritten by assigning a function to querystring.escape when needed
var querystring = require('querystring'); console.log(encodeURIComponent('测试'));//%E6%B5%8B%E8%AF%95console.log(querystring.escape('测试'));//%E6%B5%8B%E8%AF%95
[querystring.unescape(str)]
The querystring.unescape() method decodes the URL percent-encoded characters on the given str
The querystring.unescape() method is used by querystring.parse() and is usually not used be used directly. The reason why it is open to the outside world is that the decoding implementation can be overridden when needed by assigning a function to querystring.unescape.
The querystring.unescape() method uses JavaScript’s built-in decodeURIComponent() method to decode by default
var querystring = require('querystring'); console.log(decodeURIComponent('%E6%B5%8B%E8%AF%95'));//'测试'console.log(querystring.unescape('%E6%B5%8B%E8%AF%95'));//'测试'
GET
get The requested data is stored in the URL
http://127.0.0.1:8080/home/test?a=1&b=2
var http = require('http');var url = require('url');var querystring = require('querystring'); http.createServer(function(req,res){var urlObj = url.parse(req.url);var query = urlObj.query;var queryObj = querystring.parse(query); console.log(req.url);//'/home/test?a=1&b=2'console.log(query);//'a=1&b=2'console.log(queryObj);//{ a: '1', b: '2' }}).listen(8080);
POST
The data requested by post will be written to the buffer , data splicing processing needs to be performed through the data event and end event of the request
var http = require('http');var url = require('url');var querystring = require('querystring'); http.createServer(function(req,res){var str = ''; req.on('data', function(thunk){ str += thunk; }); req.on('end', function(){ console.log(str);//'name=a&email=b%40b.com'var queryObj = querystring.parse(str); console.log(queryObj);//{ name: 'a', email: 'b%40b.com' } }); }).listen(8080);

The above is the detailed content of Share the introduction of queryString in NodeJS. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Node.js can be used as a backend framework as it offers features such as high performance, scalability, cross-platform support, rich ecosystem, and ease of development.

To connect to a MySQL database, you need to follow these steps: Install the mysql2 driver. Use mysql2.createConnection() to create a connection object that contains the host address, port, username, password, and database name. Use connection.query() to perform queries. Finally use connection.end() to end the connection.

There are two npm-related files in the Node.js installation directory: npm and npm.cmd. The differences are as follows: different extensions: npm is an executable file, and npm.cmd is a command window shortcut. Windows users: npm.cmd can be used from the command prompt, npm can only be run from the command line. Compatibility: npm.cmd is specific to Windows systems, npm is available cross-platform. Usage recommendations: Windows users use npm.cmd, other operating systems use npm.

The following global variables exist in Node.js: Global object: global Core module: process, console, require Runtime environment variables: __dirname, __filename, __line, __column Constants: undefined, null, NaN, Infinity, -Infinity

The main differences between Node.js and Java are design and features: Event-driven vs. thread-driven: Node.js is event-driven and Java is thread-driven. Single-threaded vs. multi-threaded: Node.js uses a single-threaded event loop, and Java uses a multi-threaded architecture. Runtime environment: Node.js runs on the V8 JavaScript engine, while Java runs on the JVM. Syntax: Node.js uses JavaScript syntax, while Java uses Java syntax. Purpose: Node.js is suitable for I/O-intensive tasks, while Java is suitable for large enterprise applications.

Yes, Node.js is a backend development language. It is used for back-end development, including handling server-side business logic, managing database connections, and providing APIs.

Server deployment steps for a Node.js project: Prepare the deployment environment: obtain server access, install Node.js, set up a Git repository. Build the application: Use npm run build to generate deployable code and dependencies. Upload code to the server: via Git or File Transfer Protocol. Install dependencies: SSH into the server and use npm install to install application dependencies. Start the application: Use a command such as node index.js to start the application, or use a process manager such as pm2. Configure a reverse proxy (optional): Use a reverse proxy such as Nginx or Apache to route traffic to your application

Node.js and Java each have their pros and cons in web development, and the choice depends on project requirements. Node.js excels in real-time applications, rapid development, and microservices architecture, while Java excels in enterprise-grade support, performance, and security.
