0

对于我的商店,我有一些类似的东西:

var GraphStore = Reflux.createStore({
    listenables: [GraphActions],
    updateGraphedMetrics: function(graphs) {
        ...
        this.trigger(graphs);
    },
    getInitialState: function() {
        this.graphedMetrics = [];
        return this.graphs;
  }
});

我正在使用:

var Dashboard = React.createClass({
  mixins: [Reflux.connect(GraphStore,"graphs")],
  render: function() {
  ...
  }
});

这很好用。但是,如果我想监听图形中特定索引(stateKey)而不是整个数组的变化怎么办?目前的结构有可能吗?如果没有,最好的方法是什么?

4

0 回答 0