<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 被更改的组件?

      How to prevent $state from refreshing any Component that does not rely on the $state.var being changed?(如何防止 $state 刷新任何不依赖 $state.var 被更改的组件?)
        <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 被更改的组件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Toggle HTML radio button by clicking its label(通过单击标签来切换 HTML 单选按钮)
                Javascript how to change radio button label text?(Javascript如何更改单选按钮标签文本?)
                JavaScript radio button confirmation(JavaScript 单选按钮确认)
                How can I automatically select specific radio buttons with Greasemonkey?(如何使用 Greasemonkey 自动选择特定的单选按钮?)
                AngularJs. Is it possible to deselect HTML “radio” input by click?(AngularJs.是否可以通过单击取消选择 HTML“收音机输入?)
                Checking Value of Radio Button Group via JavaScript?(通过 JavaScript 检查单选按钮组的值?)

                  <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>
                      <tbody id='BOkip'></tbody>

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