13. 상태 모드
1676 단어 js 흔 한 디자인 모델js 디자인 모드
대상 이 내부 상태 가 바 뀔 때 행동 을 바 꿀 수 있 도록 허용 합 니 다. 대상 이 종 류 를 수정 한 것 처럼 보 입 니 다.
2、demo
전등 의 켜 기, 밝기, 끄 기
// 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();
참고 문헌:
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
13. 상태 모드1. 특징 대상 이 내부 상태 가 바 뀔 때 행동 을 바 꿀 수 있 도록 허용 합 니 다. 대상 이 종 류 를 수정 한 것 처럼 보 입 니 다. 2、demo 전등 의 켜 기, 밝기, 끄 기 참고 문헌:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.