Javascript中的this跟Java中的this不一样,可能在创建对象的时候是一样的,但是当运行的时候,可能javascript中的this,可能就会变成另外一个对象。如果不熟悉javascript编程的人遇到这种情况时,很有可能会觉得莫名其妙。怎么定义的函数或者属性总是undefined呢?
//@parm timeout_time if user is not active for the time, we will consider the user should be away and should make time right now.
//@parm interval_detect_timeout_time which is a timer, it will invoke "detectUserOperation" to detect whether should set onTimeout event.
function TimeoutComponent(timeout_time, interval_detect_timeout_time){
this.timeoutTime = timeout_time;
this.intervalDetectTimeoutTime = interval_detect_timeout_time;
this.detectUserOperationTimer = this.startDetect();
this.lastOperationTimestamp = new Date().getTime();
alert(this.lastOperationTimestamp);
}
TimeoutComponent.prototype.detectUserOperation = function(){
var currentTime = new Date().getTime();
var intervalTime = currentTime - this.lastOperationTimestamp;
if (intervalTime > this.timeoutTime){
//send the onTimeout event, user should override this method to customize timeout behavior
this.onTimeout();
//stop interval detect now.
this.stopDetect();
}
};
TimeoutComponent.prototype.onTimeout = function(){
};
TimeoutComponent.prototype.getTimeoutValue = function(){
return this.timeoutTime;
};
TimeoutComponent.prototype.getIntervalValue = function(){
return this.intervalDetectTimeoutTime;
};
TimeoutComponent.prototype.stopDetect = function(){
window.clearInterval(this.detectUserOperationTimer);
};
TimeoutComponent.prototype.startDetect = function(){
[b]var timer = window.setInterval(this.detectUserOperation, this.intervalDetectTimeoutTime);[/b]
return timer;
};
TimeoutComponent.prototype.updateLastOperationTime = function(){
this.lastOperationTimestamp = new Date().getTime();
};
上面是一个javascript 对象,注意上面的粗体部分。在创建这个对象时(new TimeoutComponent(60000, 30000))没有问题, 然后当运行时,我们会发现在detectUserOperation函数中的this.lastOperationTimestamp属性变成了undefined。本来这是我们TimeoutComponent对象中的一个属性,怎么现在变成undefined了呢? 当我在firefox下面调式时发现这个this已经变成了Window对象了。 难怪会找不到。 ok。问题找到了,我该怎么解决呢? ??? 想了一点时间,隐约记得以前用过dojo.lang.hitch这个方法是来处理这种情况的。ok。 改了下代码。刷新页面,ok 现在没有问题了。
TimeoutComponent.prototype.startDetect = function(){
var timer = window.setInterval(dojo.lang.hitch(this, this.detectUserOperation), this.intervalDetectTimeoutTime);
return timer;
};
看看dojo做了什么事情。。
/**
* Runs a function in a given scope (thisObject), can
* also be used to preserve scope.
*
* hitch(foo, "bar"); // runs foo.bar() in the scope of foo
* hitch(foo, myFunction); // runs myFunction in the scope of foo
*/
dojo.lang.hitch = function(thisObject, method) {
if(dojo.lang.isString(method)) {
var fcn = thisObject[method];
} else {
var fcn = method;
}
return function() {
return fcn.apply(thisObject, arguments);
}
}
ok。 现在清楚了吧。
分享到:
相关推荐
在本话题中,我们将深入探讨JavaScript中的类继承,并特别关注`this.callParent`这个方法,它是如何被用来调用超类方法的。 首先,让我们了解JavaScript中的构造函数。构造函数是一种特殊的函数,用于创建和初始化...
this.x = this.x + x; this.y = this.y + y; } }; point.moveTo(1, 1); // `this` 指向 `point` 对象 ``` 在这个例子中,`moveTo`方法内部的`this`指向`point`对象,因此能够修改`point`的`x`和`y`属性。 2....
3. javascript中onclick中的this:这是调用obj.value得到的结果,显示了触发事件的元素的value属性值。 总结来说,在javascript中,onclick(this)的用法主要是将当前被点击的元素作为上下文对象传递给事件处理函数...
console.log(this.name); } var name = "xieliqun"; sayHello(); // 输出: xieliqun var obj = { name: "xiaoming", sayHello: function() { console.log(this.name); } }; obj.sayHello(); // 输出: ...
This book will present various JavaScript and p5.js features and concepts in the following chapters. The knowledge will be reinforced by building several useful examples like an animation and a data...
console.log(this.name); } }; obj.sayName(); // 输出 "John" ``` 2. **全局上下文** 在全局作用域中,`this`指向全局对象。在浏览器环境中,全局对象是`window`;在Node.js中,全局对象是`global`。 ```...
这种特性使得this在JavaScript中具有了多重含义,对于初学者来说,确实是一个令人困惑的概念。 首先,需要明确的是,在JavaScript中,this关键字的指向不是在编译期确定的,而是在运行期确定的。这与大多数主流的...
在JavaScript中,“this”关键字的含义取决于调用函数的上下文。在非严格模式下,全局作用域中的“this”通常指向全局对象,在函数调用中“this”可能指向调用该函数的对象,或者在事件处理程序中指向触发事件的元素...
在这个例子中,`this`在`globalFunction`中指向`window`,因此`this.globalVar`访问到的是全局变量。 2. **函数调用中的`this`** 当函数作为普通函数调用时,`this`被设置为调用该函数的那个对象,或者在非严格...
This Fifth Edition is completely revised and expanded to cover JavaScript as it is used in today's Web 2.0 applications. This book is both an example-driven programmer's guide and a keep-on-your-desk ...
构造函数中的 `this.name = name` 实际上是在新对象上创建了一个 `name` 属性。 ### 总结 理解 `this` 的工作原理对于编写 JavaScript 代码至关重要。`this` 的值取决于函数调用的上下文,而不是函数定义的位置。...
this.name = name; } var person1 = new Person('Alice'); console.log(person1.name); // 'Alice' ``` 这里,通过 `new` 关键字调用 `Person` 函数,创建了一个新的对象,其 `name` 属性被设置为 `'Alice'`。 ##...
标题 "解析 this.initialize.apply(this, arguments)" 涉及到的是JavaScript编程中的一个关键概念,尤其是在对象构造和类继承的情景下。`this` 关键字在JavaScript中扮演着核心角色,它指的是函数调用时的上下文,而...
this.value = value; this.children = []; } ``` 2. **插入节点**: 要向树中添加新节点,我们需要一个方法来找到合适的位置并插入。这通常涉及遍历树的结构,找到合适的父节点,并将新节点添加到其`children`...
在上面的示例中,当`sayHi`作为一个全局函数调用时,`this`就是`window`,因此`this.name`等同于`window.name`。 2. **函数调用中的this**:如果一个函数作为对象的方法被调用,`this`将指向调用该方法的对象。例如...
alert(this.color); }; return oTempCar; } var oCar1 = createCar("red", 4, 23); var oCar2 = createCar("blue", 3, 25); oCar1.showColor(); // 输出 "red" oCar2.showColor(); // 输出 "blue" ``` 此外,...
【教程简介】 javascript基础 javascript游戏开发之贪吃蛇项目 javascript高级 nodejs开发 nosql数据之Mongodb 【javascript基础】 01-javascript的概述.md ...11-工厂方法_构造函数_this关键字.md