2016-06-10 46 views
0

我現在需要做這樣的事情如何使用正則表達式來捕獲angularjs模擬中的url?

$httpBackend.whenGET('http://url:port/whatever').passThrough(); 

爲止,我所使用的要求是這種模式

$httpBackend.whenGET('myroute/whatever.html').passThrough(); 

不過,我想我必須使用現在正則表達式的開始/正則表達式/但我不知道如何趕上網址

任何幫助將非常感激,謝謝提前

回答

0

我相信你可以使用正則表達式或函數:

試試這個:

$httpBackend.when("GET", /\/(.*)/) 

$httpBackend.when("GET", function(url) { 
    return true 
}) 
相關問題