angular route $state.go('hospital_doctors', { hospital_id: hospital_id })传值页面刷新怎么保存

使用angular route $state.go('hospital_doctors',{ hospital_id: hospital_id })传值页面刷新之后发现值不见了,即$stateParams.hospital_idnull

解决办法是

.state('hospital_doctors',{
    url: '/hospital_doctors/:hospital_id',headText: '医院所有医生',templateUrl: '/assets/app/templates/hospital_doctors.html.erb',controller: 'hospital_doctorsController'
    params: {
        hospital_id: null
    }
})

页面跳转还是按以前的来
$state.go('hospital_doctors',{ hospital_id: hospital_id })

接下来不管你怎么刷新值都在,因为它存在url里面了,如下
http://localhost:4000/#/manager/hospital_doctors/100

使用$stateParams.hospital_id获取即可

下面来说下嵌套路由的获取方法

.state('doctorInfo',{
    url: '/doctorInfo/:doctor_id',templateUrl: '/assets/adminAngular/app/templates/doctorInfo/index.html',controller: 'doctorInfoCtrl',params:{doctor_id: null}
})
.state('doctorInfo.personInfo',{
    url: '/personInfo/:doctor_id',templateUrl: '/assets/adminAngular/app/templates/personInfo/index.html',controller: 'personInfoCtrl',params:{doctor_id: null}
})
.state('doctorInfo.statistics',{
    url: '/statistics/:doctor_id',templateUrl: '/assets/adminAngular/app/templates/statistics/index.html',controller: 'statisticsCtrl',params:{doctor_id: null}
})

上面的路由如果你直接使用

$state.go('doctorInfo.personInfo',{doctor_id: id})

那你在doctorInfoCtrl,personInfoCtrl里面使用

$stateParams.doctor_id

也是能获取到值的,路由效果是这样的

http://localhost:4000/#/doctorInfo/1/personInfo/1

看到上面的路由你应该已经不难看出通信原理了吧,即使浏览器刷新了,stateParams依然能获取到你所传递的值

api地址

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...