在下面的代码中,第二个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};
}