AngularJS UI路由器$state仅重新加载子状态

前端之家收集整理的这篇文章主要介绍了AngularJS UI路由器$state仅重新加载子状态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用UI路由器作为主菜单的选项卡以及其中一个状态(用户)中的链接用户状态有用户列表,当用户点击时,我想重新加载子状态,但是它正在重新加载子状态和父状态(用户)。

这是我的代码

  1. app.config(function ($stateProvider,$locationProvider,$urlRouterProvider) {
  2. $urlRouterProvider.otherwise("/");
  3. $locationProvider.html5Mode(true);
  4. $stateProvider
  5. .state('home',{
  6. abstract: true,template: '<div ui-view=""></div>',controller: 'HomeController as homeCtrl'
  7. })
  8. .state('users',{
  9. parent: 'home',url: '/users',templateUrl: '/User/Index',controller: 'UserController as userCtrl',})
  10. .state('users.createUser',{
  11. templateUrl: '/User/CreateUser',controller: 'CreateUserController as cuCtrl'
  12. })
  13. .state('users.editUser',{
  14. templateUrl: '/User/EditUser',controller: 'EditUserController as euCtrl',resolve: {
  15. userInfo: function (contextInfo,userData) {
  16. return userData.get(contextInfo.getUserKey());
  17. }
  18. }
  19. })
  20. .state('users.addWebItemsForUser',{
  21. templateUrl: '/User/AddWebItemsForUser',controller: 'UserWebItemsController as uwiCtrl'
  22. })
  23. .state('users.addReportsForUser',{
  24. templateUrl: '/User/AddReportsForUser',controller: 'UserReportsController as urCtrl'
  25. })
  26. .state('users.userGroups',{
  27. templateUrl: '/User/UserGroups',controller: 'UserGroupController as userGroupCtrl'
  28. })
  29. //.state('users.logInWebApp',{
  30. // template: '<h3>Logging into web app</h3>',// resolve: {
  31. // user: function() {
  32. // return {
  33. // //companyId: contextInfo.getCustomerKey()
  34. // //userId:
  35. // //password:
  36. // }
  37. // }
  38. // },// controller: function() {
  39. // // need company code,username and password of user then need to open window with webapp url (will that work?) - do we still want to add this functionality?
  40. // }
  41. //})
  42. .state('links',{
  43. url: '/links',templateUrl: '/Link/Index',controller: 'LinkController as linkCtrl'
  44. })
  45. .state('onlrpts',{
  46. url: '/onlineReports',templateUrl: '/OnlineReport/Index',controller: 'OnlineReportController as onlRptCtrl'
  47. })
  48. .state('reports',{
  49. url: '/customerReports',templateUrl: '/CustomerReport/Index',controller: 'CustomerReportController as custRptCtrl'
  50. });
  51. })
  52. .config(function($provide) {
  53. $provide.decorator('$state',function($delegate,$stateParams) {
  54. $delegate.forceReload = function() {
  55. return $delegate.go($delegate.$current.name,$stateParams,{
  56. reload: true,inherit: false,notify: true
  57. });
  58. };
  59. return $delegate;
  60. });
  61. });

这是在我的父控制器(UserController)中,当用户被点击时调用函数

  1. this.userTreeClick = function(e) {
  2. contextInfo.setUserKey(e.Key);
  3. contextInfo.setUserName(e.Value);
  4. userCtrl.userKey = e.Key;
  5. $state.forceReload();
  6. };

所以说我在users.userGroups状态,当我点击另一个用户,我只想要users.userGroups状态被重新加载。这可能吗?我已经通过谷歌和StackOverflow找到了一个答案,但我没有发现任何与我正在尝试的东西完全一样。当我断开检查$状态$ current.name – 名称是正确的 – users.userGroups,但它重新加载所有,而不仅仅是子状态。任何帮助非常感谢!

如API Reference所述,我们可以使用$ state.reload:

07000

A method that force reloads the current state. All resolves are
re-resolved,controllers reinstantiated,and events re-fired.

Parameters:

  • state (optional)
    • A state name or a state object,which is the root of the resolves to be re-resolved.

一个例子:

  1. //will reload 'contact.detail' and 'contact.detail.item' states
  2. $state.reload('contact.detail');

类似的,我们可以用$ state.go()和它的options参数来实现:

07001

  • options (optional)
    • location
    • inherit
    • relative
    • notify
    • reload (v0.2.5) – {boolean=false|string|object},If true will force transition even if no state or params have changed. It will
      reload the resolves and views of the current state and parent states.
      If reload is a string (or state object),the state object is fetched (by name,or object reference); and \ the transition reloads the
      resolves and views for that matched state,and all its children
      states.

例如https://github.com/angular-ui/ui-router/issues/1612#issuecomment-77757224 by Chris T:

  1. { reload: true } // reloads all,{ reload: 'foo.bar' } // reloads top.bar,and any children
  2. { reload: stateObj } // reloads state found in stateObj,and any children

一个例子

  1. $state.go('contact',{...},{reload: 'contact.detail'});

猜你在找的Angularjs相关文章