728x90
const url = require("url");
const querystring = require("querystring");
const parsed = url.parse("https://nyaongnyaong.com/40?category=833145");
console.log(parsed);
console.log(querystring.parse(parsed.query));
console.log(parsed); =>
{
protocol: 'https:',
slashes: true,
auth: null,
host: 'nyaongnyaong.com',
port: null,
hostname: 'nyaongnyaong.com',
hash: null,
search: '?category=833145',
query: 'category=833145',
pathname: '/40',
path: '/40?category=833145',
href: 'https://nyaongnyaong.com/40?category=833145'
}
console.log(querystring.parse(parsed.query)); =>
{
category: '833145'
}
참고로 query string 모듈은 있다는 걸 쓴 것이고 url 모듈로 충분합니다.
반응형
'Programming > Javascript' 카테고리의 다른 글
[jQuery]이미지 첨부 시 미리 보기 (0) | 2021.12.08 |
---|---|
[jQuery]datepicker에서 여러 날짜 선택할 수 있게 (0) | 2021.12.02 |
Hello World! (0) | 2021.11.19 |
Swiper에 ajax로 추가할 경우 (2) | 2021.09.13 |
[jQuery]datepicker에서 date format을 두 가지 이상으로... (0) | 2021.08.19 |