角度:route.params返回“ null”而不是null

时间:2019-04-17 08:40:31

标签: angular routing null

我无法在route.params中返回空值。而是返回一个包含string: "null"

的字符串
this.route.params.subscribe(params=> {
    console.log(typeof params['parameter']);
} //it says it is a string


let routeParam = null;

this.router.navigate(['/heroes', {parameter: routeParam}]);

1 个答案:

答案 0 :(得分:0)

处理此比较null与值的更好方法:

queryparams.key === null

和其他参考资料检查此链接

https://angular.io/api/router/Params