我们可以检查下面的条件,如果没有那么其他方式???我需要在URl下面显示console.log。
$location.$$absUrl.includes('localhost' || 'qa1' || 'cat1')
以下是我的网址:
答案 0 :(得分:1)
尝试:
var absUrl = $location.absUrl();
if(absUrl.match(/(localhost|qa1|cat1)/)){
console.log(absUrl)
}
答案 1 :(得分:1)
要实现您的期望,您应该使用正则表达式。
// If my domain contain localhost OR qua1 or cat1.
if (!$location.absUrl().match(/(localhost|qa1|cat1)/)) {
// then override console.log to empty function.
console.log = function(){ };
//Is equal to do : window['console']['log'] = function(){ };
}
<强>更新强>
如果您想disable all kind of console output查看此其他主题