<bdo id='imrhV'></bdo><ul id='imrhV'></ul>
  1. <i id='imrhV'><tr id='imrhV'><dt id='imrhV'><q id='imrhV'><span id='imrhV'><b id='imrhV'><form id='imrhV'><ins id='imrhV'></ins><ul id='imrhV'></ul><sub id='imrhV'></sub></form><legend id='imrhV'></legend><bdo id='imrhV'><pre id='imrhV'><center id='imrhV'></center></pre></bdo></b><th id='imrhV'></th></span></q></dt></tr></i><div id='imrhV'><tfoot id='imrhV'></tfoot><dl id='imrhV'><fieldset id='imrhV'></fieldset></dl></div>

    <legend id='imrhV'><style id='imrhV'><dir id='imrhV'><q id='imrhV'></q></dir></style></legend>
    1. <tfoot id='imrhV'></tfoot>

      <small id='imrhV'></small><noframes id='imrhV'>

      如何防止 $state 刷新任何不依赖 $state.var 被更改的组件?

      时间:2023-10-21
        <legend id='49me4'><style id='49me4'><dir id='49me4'><q id='49me4'></q></dir></style></legend>
      1. <i id='49me4'><tr id='49me4'><dt id='49me4'><q id='49me4'><span id='49me4'><b id='49me4'><form id='49me4'><ins id='49me4'></ins><ul id='49me4'></ul><sub id='49me4'></sub></form><legend id='49me4'></legend><bdo id='49me4'><pre id='49me4'><center id='49me4'></center></pre></bdo></b><th id='49me4'></th></span></q></dt></tr></i><div id='49me4'><tfoot id='49me4'></tfoot><dl id='49me4'><fieldset id='49me4'></fieldset></dl></div>

      2. <small id='49me4'></small><noframes id='49me4'>

            <tbody id='49me4'></tbody>

            1. <tfoot id='49me4'></tfoot>
                <bdo id='49me4'></bdo><ul id='49me4'></ul>

                本文介绍了如何防止 $state 刷新任何不依赖 $state.var 被更改的组件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我们正在使用 Angular-ui-router 用于我们的应用状态管理.

                We're using Angular-ui-router for our app state management.

                我们遇到的一个问题是每个组件都会在 $state 更改时刷新,即使它是一个已更新的变量在某些组件中不存在/未使用.

                A problem we're having is that every component refreshes when the $state changes, even if it's a variable that is updated that does not exist/not used in some components.

                例如,我们有一个 TickersPanel 和一个 TagsPanel.When a Ticker is selected, the TagsPanel should be updated and refreshed, however when a tag is selected in the TagsPanel, the TickersPanel should NOT refresh, but it currently does.

                For example, we have a TickersPanel and a TagsPanel. When a Ticker is selected, the TagsPanel should be updated and refreshed, however when a tag is selected in the TagsPanel, the TickersPanel should NOT refresh, but it currently does.

                我发现 { notify: false } 是另一个可以传入的对象.但是一旦我这样做了,没有组件会刷新.

                I found out that { notify: false } is another object that can be passed in. However once I do that, NO components will refresh.

                const save = (tag, terms) => {
                    CONTAINER.push(tag);
                    $state.go('charting', Term.write(terms), { notify: false }).then((stateResult) => {
                        console.log('stateResult', stateResult);
                    });
                };
                

                有没有人找到解决这个问题的方法?

                <小时>

                TagsPanel $onInit(在每次 $state 更改时运行)

                this.$onInit = () => {
                    tagsCol.addEventListener('scroll', scrollingTags);
                
                    this.tags = [];
                    this.limit = 30;
                
                    const panelOpen = Dashboard.panelStatus(this.tagsOpen, this.chartMax);
                    panelOpen ? buildTagList() : collapsePanel();
                };
                

                TickersPanel $onInit(在每次 $state 更改时运行,如果 $state.params.ticker 没有更改,则不应运行)

                TickersPanel $onInit (Runs on every $state change, if $state.params.ticker did not change, then this should not be ran)

                this.$onInit = () => {
                    this.tickers = [];
                
                    this.spy = {
                        longname: "SPDR S&P 500",
                        ticker: "SPY",
                    };
                
                    this.showTickersPanel = Dashboard.panelStatus(this.tagsOpen, this.chartMax);
                    // const currentState = $state.params;
                    // const prevState = Dashboard.getPreviousState();
                    loadTickers().then(() => this.loadingTickersDone = true);
                };
                

                推荐答案

                我已经做了一个JsFiddle 描述一种使用 uiRouter 实现我从您的问题中理解的方法.

                I've made a JsFiddle to describe a way to achieve what I've understood from your question using the uiRouter.

                小提琴使用状态继承 和 命名视图 仅重新初始化tagstickers 参数改变时的状态.

                The fiddle uses state inheritance and named views to only reinitialize the tags state when the tickers param changes.

                [..]
                // Using @ on the view names to refer to the absolute uiViews.
                $stateProvider.state('tickers', {
                    url: "",
                    views: {
                      'tickersPanel@': {
                        template: [..]
                        bindToController: true,
                        controllerAs: "$ctrl",
                        controller: function() {
                          this.$onInit = function() {
                            console.info('Tickers Panel $onInit');
                            this.tickers = ["Ticker1", "Ticker2", "Ticker3"]
                          }
                        }
                      },
                      [..]
                    }
                });
                $stateProvider.state('tags', {
                    parent: 'tickers',
                    url: "/:ticker",
                    views: {
                      'tagsPanel@': {
                        template: [..]
                        controllerAs: '$ctrl',
                        bindToController: true,
                        controller: function($stateParams) {
                          this.$onInit = function() {
                            console.info('Tags Panel 2 $onInit');
                            this.ticker = $stateParams["ticker"];
                          }
                        }
                      }
                    }
                });
                [..]
                

                这篇关于如何防止 $state 刷新任何不依赖 $state.var 被更改的组件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:在ui-router中的当前状态下如何绑定相关值? 下一篇:当 UI-Router ES6 中的状态更改时,$stateChangeStart 不会被触发?

                相关文章

                <tfoot id='BOkip'></tfoot>
                1. <legend id='BOkip'><style id='BOkip'><dir id='BOkip'><q id='BOkip'></q></dir></style></legend>

                  <small id='BOkip'></small><noframes id='BOkip'>

                2. <i id='BOkip'><tr id='BOkip'><dt id='BOkip'><q id='BOkip'><span id='BOkip'><b id='BOkip'><form id='BOkip'><ins id='BOkip'></ins><ul id='BOkip'></ul><sub id='BOkip'></sub></form><legend id='BOkip'></legend><bdo id='BOkip'><pre id='BOkip'><center id='BOkip'></center></pre></bdo></b><th id='BOkip'></th></span></q></dt></tr></i><div id='BOkip'><tfoot id='BOkip'></tfoot><dl id='BOkip'><fieldset id='BOkip'></fieldset></dl></div>

                    <bdo id='BOkip'></bdo><ul id='BOkip'></ul>