-1
我有一個簡單的代碼行,使用AngularJS讓我當前的路徑位置:獲得來自location.path特定值() - AngularJS
$location.path()
導致以下格式:/stringValue/intValue/stringValue
例如 - test/1234/testing
從$ location.path()返回的內容中提取intValue
的最簡單方法是什麼?
我有一個簡單的代碼行,使用AngularJS讓我當前的路徑位置:獲得來自location.path特定值() - AngularJS
$location.path()
導致以下格式:/stringValue/intValue/stringValue
例如 - test/1234/testing
從$ location.path()返回的內容中提取intValue
的最簡單方法是什麼?
這會從你提取號碼網址:
var r = /\d+/;
var s = "/string/12345/string2";
alert (s.match(r));
什麼'$ location.path()分裂( '/')[1]'? – lin