admin管理员组文章数量:1345007
Suppose I have the following test code in AngularJS:
var someURL;
var dummyJSON;
$httpBackend.whenGET(someURL).respond(dummyJSON);
Is there a way of making this the response for a set of URLs rather than just one? For example, I'd like it to respond with the same dummy JSON for ANY url that starts with /api/, but not ones that start with /app/. Like a wildcard URL ("/app/*") ?
Thanks for the help
Suppose I have the following test code in AngularJS:
var someURL;
var dummyJSON;
$httpBackend.whenGET(someURL).respond(dummyJSON);
Is there a way of making this the response for a set of URLs rather than just one? For example, I'd like it to respond with the same dummy JSON for ANY url that starts with /api/, but not ones that start with /app/. Like a wildcard URL ("/app/*") ?
Thanks for the help
Share Improve this question asked Dec 30, 2013 at 21:22 r.bilgilr.bilgil 9092 gold badges10 silver badges15 bronze badges 2- 2 You can use regular expression in url. Check here – Jashwant Commented Dec 30, 2013 at 21:26
- Thanks for the link. Any help in constructing this regexp? I'm having difficulty getting it to work. – r.bilgil Commented Dec 30, 2013 at 21:59
2 Answers
Reset to default 7I've had luck with expressions like whenGET(/^\/api\//)
– which means starts with /api/
. In the regex, ^
will match the start of the string and \/
will match a literal /
in the URL.
If that doesn't match your requests, try whenGET(/\/api\//)
which should match absolute URLs as well as relative URLs.
You can also use a function if you don't want to deal with regex. Something like:
$httpBackend.when("GET", function(url) {return url.indexOf("/api/") === 0;}
本文标签: javascriptIs it possible to set a wildcard for httpBackend responsesStack Overflow
版权声明:本文标题:javascript - Is it possible to set a wildcard for $httpBackend responses? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743777978a2537329.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论