2016-03-15 85 views

回答

0

這裏有兩種可能性。請注意,「子」的選擇非常嚴格,總是從第16位開始

def str = 'www.xyz.com/abc/defect_123/'; 

def pieces = str.tokenize('/'); // prints defect_123 
def from16 = str.substring(16); // prints defect_123/ 

println from16; 
println pieces.last(); 
0

您應該定義(如果從www.xyz.com域更改www.xyzw.com?發生了什麼)在此動態URL UrlMappings.groovy文件:

"www.xyz.com/abc/$defect_id" (controller: 'YourController', action: 'method_name')

,您可以從訪問defect_id變量YourController使用params.defect_id

相關問題