Coder Social home page Coder Social logo

Comments (1)

rottenpen avatar rottenpen commented on June 12, 2024

代理模式

代理模式是为一个对象提供一个代用品或占位符,以便控制对它的访问。

案例1

A要送礼物给B / A让C帮忙把礼物送给B

A.send = function( target ,gift){
    let gift = '花'
    target.receive(gift)
}
B.receive = function(gift){
    console.log("B收到了" + gift)
}
A.send(B) // B 收到了花

C.receive  = function (gift){
    console.log("B收到了" + gift + ",并转送给B")
    B.receive(gift)
}
A.send(C) // C收到了花,并转送给B B收到了礼物

保护代理

C知道B喜欢什么,A送一些不喜欢的礼物就能退回去了。过滤掉不喜欢的礼物,不喜欢的人,这就是保护代理的作用。

A.back = function (gift) {
    console.log('A被退回了' + gift)
}
C.receive  = function (gift){
   if(gift === ‘花’){
     A.back(gift)
   }else {
       console.log("B收到了" + gift + ",并转送给B")
       B.receive(gift)
    }
}

from blog.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.