時計を作成するために 2 つの異なるオブジェクトがあります。アナログとデジタルです。わずかな変更を除いて、実質的に同じです。
ただし、オブジェクト内の多くのメソッドが両方で使用されています。私はそれらをインスタンス化したいと思っています。だから私はオブジェクトにそれらが必要です。Clock
たとえば、基本的なメソッドを持つオブジェクトをJavascriptanalogueClock
との間で拡張するにはどうすればよいですか?digitalClock
これは私が持っていて機能しないものです:
呼び出し
if (clockType == 'digital') {
clk = new DigitalClock(theClockDiv);
} else if (clockType == 'analogue') {
clk = new AnalogueClock(theClockDiv);
}
baseClock = new baseClock();
$.extend({}, clk, baseClock);
そして機能
function DigitalClock(theDigitalClockParent, indicatedTime) {
this.indicatedTime = indicatedTime;
this.interval = null;
this.buildClock = function() {
//CUSTOM THINGS HERE
}
this.setCurrentTime();
this.buildClock();
this.startRechecker();
}
function AnalogueClock(theAnalogueClockParent, indicatedTime) {
this.indicatedTime = indicatedTime;
this.interval = null;
this.buildClock = function() {
//CUSTOM THINGS HERE
}
this.setCurrentTime();
this.buildClock();
this.startRechecker();
}
function baseClock() {
this.setCurrentTime = function() {
if (this.indicatedTime != undefined) {
this.date = new Date(railsDateToTimestamp(this.indicatedTime));
} else {
this.date = new Date();
}
this.seconds = this.date.getSeconds();
this.minutes = this.date.getMinutes();
this.hours = this.date.getHours();
}
this.startInterval = function() {
//Use a proxy in the setInterval to keep the scope of the object.
this.interval = setInterval($.proxy(function() {
//console.log(this);
var newTime = updateClockTime(this.hours, this.minutes, this.seconds);
this.hours = newTime[0];
this.minutes = newTime[1];
this.seconds = newTime[2];
this.buildClock();
}, this), 1000);
}
this.stopInterval = function() {
window.clearInterval(this.interval);
this.interval = null;
}
}