Nhận máy chủ Node của riêng bạn
 var url = require('url'); var adr = 'https://localhost:8080/default.htm?year=2017&month=february'; //Parse the address: var q = url.parse(adr, true); /*The parse method returns an object containing url properties*/ console.log(q.host); console.log(q.pathname); console.log(q.search); /*The query property returns an object with all the querystring parameters as properties:*/ var qdata = q.query; console.log(qdata.month);
máy chủ cục bộ: 8080
/mặc định
?năm=2017&tháng=tháng hai
tháng 2