搜索

首页  >  问答  >  正文

angular.js - angularJs ngRoute怎么在路由传递空字符串及用ng-switch取得

  .when('/asset/:type', {//资产详情路由
                templateUrl: 'tpl/asset.html',
                controller: 'assetCtrl'
            })

在路由config里面type的其中一个可能是为空值,不同的值跳转到的页面展示效果不一致,现在在页面用函数:
ng-click="jump('/asset/ ')"可以传递空字符串,但相应的跳转到页面后路由为:#/asset/%20,在后面自动加了%20, 然后在ng-switch="type" 里面使用ng-switch-when=" ",却显示不出相应的效果,也尝试过ng-switch-when="%20",都无法跳转到匹配的样式。请问应该怎么才能实现这个效果?

phpcn_u1582phpcn_u15822745 天前571

全部回复(2)我来回复

  • phpcn_u1582

    phpcn_u15822017-05-15 17:10:43

    默认即为空,不需要特地加一个 空格符 来实现

    回复
    0
  • 阿神

    阿神2017-05-15 17:10:43

    $locationProvider.hashPrefix('');

    这是因为新版本的ngroute加了感叹号引起的 干掉他就好了

    回复
    0
  • 取消回复