请问angularjs使用ngRoute 路由传递可选参数是怎么样的?
//下面是路由config
.config(function ($routeProvider) {
$routeProvider
.when('/asset/:type', {//这里页面需要传递可选参数
templateUrl: 'tpl/asset.html',
controller: 'assetCtrl'
})
.otherwise({
redirectTo: '/home'
});
})
//html页面
//**这里点击跳转到asset页面**
总资产(元)
{{userAll|currency:''}}
当前收益(元)
{{userAllIP|currency:''}}
累计收益(元)
{{Day_all|currency:''}}
现在有6个html页面的p 点击跳转到asset页面 其中一个传递参数必须是空,其余5个页面传递参数type为1-5,
jump()函数在传递空值的时候应该怎么写才能跳转到asset页面?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
推荐使用 angular-ui-route
.when('/asset/:type?'
后面添加问号,这样asset页面也可以接收空参数了