//Modul untuk digunakan http url
URL semasa http://localhost:8888/select?aa=001&bb=002
var http = memerlukan('http');
var URL = memerlukan('url');
http.createServer(function(req, res){
var arg = url.parse(req.url).query; //Kaedah 1 arg => aa=001&bb=002
var arg = url.parse(req.url, true).query; //Kaedah 2 arg => { aa: '001', bb: '002' }
console.log(arg.aa);//Return 001
console.log(arg.bb);//Return 002
//Kemudian anda boleh memprosesnya berdasarkan data yang diperoleh
}).listen(8888);//Tubuhkan pelayan dan dengar pada port
Dapatkan nilai parameter url tertentu
var testUrl = 'http://localhost:8888/select?aa=001&bb=002';
var p = URL.parse(testUrl);
console.log(p.href); //Nilai yang diperolehi ialah: http://localhost:8888/select?aa=001&bb=002
console.log(p.protocol); //Nilai yang diperoleh ialah: http:
console.log( p.hostname);//Nilai yang diperoleh ialah: locahost
console.log(p.host);//Nilai yang diperoleh ialah: localhost:8888
console.log(p.port);//Nilai yang diperoleh ialah: 8888
console.log(p.path);//Nilai yang diperolehi ialah:/select?aa=001&bb=002
console.log(p.hash);//Nilai yang diperoleh ialah: null
console.log(p.query);//Nilai yang diperoleh ialah: aa=001
Perlu diperhatikan di sini bahawa apabila pernyataan var p = URL.parse(testUrl, true), p.query mengembalikan objek seperti: {aa:'001'}, dan mencetak p.query secara langsung mengembalikan [ object Object] , maka kita boleh menulis seperti ini: console.log(p.query.aa); //Nilai yang diperoleh ialah: 001
console.log( p.pathname);//Nilai yang diperoleh ialah: /select
Di bawah dilampirkan ialah cara mendapatkan js:
URL semasa
http://mj_0203.0fees.net/index.php?aa=001&bb=002
document.location: http://mj_0203.0fees.net/index.php?aa=001&bb=002
document.URL: http://mj_0203.0fees.net/index.php?aa=001&bb=002
document.location.href: http://mj_0203.0fees.net/index.php?aa=001&bb=002
self.location.href: http://mj_0203.0fees.net/index.php?aa=001&bb=002
top.location.href: http://mj_0203.0fees.net/index.php?aa=001&bb=002
parent.document.location: http://mj_0203.0fees.net/index.php?aa=001&bb=002
top.location.nama hos: mj_0203.0fees.net
lokasi.nama hos: mj_0203.0fees.net