當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js urlObject.search用法及代碼示例


urlObject.search()Node中的方法用於獲取主機名內的搜索查詢,後跟“?”字符。

用法: urlObject.search()
返回: Returns the search query after ‘?’ character.

範例1:在這些示例中,我們展示了urlObject.search()方法能夠從主機名提取搜索查詢。


// Importing the module 'url'  
const url = require('url'); 
    
var adr =  
'http://localhost:8080/default.htm?year=2019&month=may'; 
  
// Parse the address:
var q = url.parse(adr, true); 
  
/* The parse method returns an object containing 
 URL properties */
  
console.log(q.search);

輸出:

?year=2019&month=may

範例2:

// Importing the module 'url'  
const url = require('url'); 
    
var adr =  
'http://localhost:8080/default.htm?year=2k19&month=geekofthemonth'; 
  
// Parse the address:
var q = url.parse(adr, true); 
  
/* The parse method returns an object containing 
 URL properties */
  
console.log(q.search);

輸出:

?year=2k19&month=geekofthemonth


相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Node | urlObject.search API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。