绑定变量并将其传递给上下文

时间:2016-07-29 18:47:20

标签: javascript bind

在下面的代码中,第二个console.log将组件打印为' undefined',如何将'组件'传递给内部上下文,该组件可在外部上下文中访问?

我尝试使用bind()但它没有工作(它仍然将其打印为' undefined')

function(component) {
    console.log(component); // component is printed in the console
    $A.test.addWaitFor(true, function() {
        debugger;
        console.log(component); // component is undefined ! 
    }, function() {//do the job};
}

0 个答案:

没有答案