$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