call和bind的一个问题

var obj = {

    name:"zhang",

    age:"21"

}

var ary = [110,120,130,140];

ary.forEach(function(item,index,input){

    console.log(this) //undefined is not a function

}.call(obj))

为什么这里用call不能改变this值为obj,用bind就行,当然这里不讨论forEach的第二个参数来改变上下文

呼唤远方
浏览 385回答 1
1回答

慕勒3428872

因为在function(item,index,input){    console.log(this) //undefined is not a function}.call(obj)时,函数就已经执行了,而你这个函数没有返回值,所以你传给forEach的是undefined而bind调用会自动的返回一个函数。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript