2017-07-24 89 views
-1

我有一個簡單的代碼行,使用AngularJS讓我當前的路徑位置:獲得來自location.path特定值() - AngularJS

$location.path() 

導致以下格式:/stringValue/intValue/stringValue例如 - test/1234/testing

從$ location.path()返回的內容中提取intValue的最簡單方法是什麼?

+1

什麼'$ location.path()分裂( '/')[1]'? – lin

回答

1

這會從你提取號碼網址:

var r = /\d+/; 
 
var s = "/string/12345/string2"; 
 
alert (s.match(r));