2017-03-18 14 views
1

私はreactとmobxのアプリケーションを持っています。私はいくつかの検索を行うので、Mobxストアからのすべてのロギングユーザのやりとり(アクションコール)を分離したいので、このプロキシパターンがこのスタッフと私の質問は、私の場合、Mobxとプロキシでどのように作業できるかです。 ありがとうございましたmobxでプロキシを使用するStore

答えて

0

この目的でspyを使用できます。

例(JS Bin

class Store { 
    @observable count = 1; 
    @action 
    increment(step) { 
    this.count = this.count + step; 
    } 
} 

const store = new Store(); 

setInterval(() => store.increment(store.count), 1000); 

spy((event) => { 
    if (event.type === 'action') { 
    console.log(`${event.name} with args: ${event.arguments}`); 
    } 
}); 
+1

感謝のはあなたの時間のために –

関連する問題