$routeParams $route.current.params
Posted liucong2016
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$routeParams $route.current.params相关的知识,希望对你有一定的参考价值。
params 参数的意思
<a href="Book/Scarlet/?name=liu">Scarlet Letter</a><br/> 在js中写{{$routeParams.name}}得到的值为liu
$routeParams加“.”后得到的值为?后面传的参数。可以“.”出来
$route.current.params 和 $routeParams 有个先后顺序, $routeParams有从上一个参数变到现在?后面参数的过程
然后$route.current.params顾名思义就是现在
看Angularjs文档中有个延时的讲解注意观察二者的变化 https://docs.angularjs.org/api/ngRoute/service/$route#example
演示调整代码地址
https://plnkr.co/edit/?p=preview
以上是关于$routeParams $route.current.params的主要内容,如果未能解决你的问题,请参考以下文章
Angularjs + Typescript,如何将 $routeParams 与 IRouteParamsService 一起使用
$routeParams $route.current.params