We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
允许一个对象在其内部状态改变时改变它的行为,对象看起来似乎修改了它的类。
// OffLightState: var OffLightState = function (light) { this.light = light; }; OffLightState.prototype.buttonWasPressed = function () { console.log('弱光'); // offLightState 对应的行为 this.light.setState(this.light.weakLightState); // 切换状态到 weakLightState }; // WeakLightState: var WeakLightState = function (light) { this.light = light; }; WeakLightState.prototype.buttonWasPressed = function () { console.log('强光'); // weakLightState 对应的行为 this.light.setState(this.light.strongLightState); // 切换状态到 strongLightState }; // StrongLightState: var StrongLightState = function (light) { this.light = light; }; StrongLightState.prototype.buttonWasPressed = function () { console.log('关灯'); // strongLightState 对应的行为 this.light.setState(this.light.offLightState); // 切换状态到 offLightState }; var Light = function () { this.offLightState = new OffLightState(this); this.weakLightState = new WeakLightState(this); this.strongLightState = new StrongLightState(this); this.button = null; }; Light.prototype.init = function () { var button = document.createElement('button'), self = this; this.button = document.body.appendChild(button); this.button.innerHTML = '开关'; this.currState = this.offLightState; // 设置当前状态 this.button.onclick = function () { self.currState.buttonWasPressed(); } }; Light.prototype.setState = function (newState) { this.currState = newState; }; var light = new Light(); light.init();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
概念
允许一个对象在其内部状态改变时改变它的行为,对象看起来似乎修改了它的类。
实现
参考资料
The text was updated successfully, but these errors were encountered: