苏溪云
Gist-ES6-Proxy

Introduction

"Proxy" is a frequently used pattern in both virtual world and real world. Those patterns("proxy", "iterator" and "observer",etc) make coding more personably, as if we're building lots of maganificent skyscrapers with robust methods and tools.

Basic concept

Single request

Interaction

Application - Observer

// Create an observer to detect the opening state of light
const basicState = {
    open: false
}
const lightState = new Proxy(basicState, {
    set(obj, prop, value) {
        if (prop === 'open') {
            switch(value) {
                case true: 
                    console.log('Light on!')
                    break
                case false: 
                    console.log('Light off!')
            }
        }

        return true
    }
})


// Turn on light
lightState.open = true    // output: Light on!

// Turn off light
lightState.open = false    // output: Light off!

Grammar

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy

Conclusion

Try Proxy? Trust it at first

感谢你的阅读。欢迎通过微信(扫描下方二维码)或Github订阅我的博客。

微信公众号:苏溪云的博客

发布时间: 7/13/2017
分类: 技术/前端/JavaScript
作者版权所有,转载请注明出处,禁止商业转载