The value is returned, but not from the detect
function.
If you use a named function for the load event handler instead of an anonymous function, it's clearer what's happening:
function handleLoad() {
var result = [{ x: 45, y: 56 }];
return result;
}
function detect(URL) {
var image = new Image();
image.src = URL;
image.onload = handleLoad;
}
The value is returned from the handleLoad
function to the code that calls the event handler, but the detect
function has already exited before that. There isn't even any return
statement in the detect
function at all, so you can't expect the result to be anything but undefined
.
One common way of handling asynchronous scenarios like this, is to use a callback function:
function detect(URL, callback) {
var image = new Image();
image.src = URL;
image.onload = function() {
var result = [{ x: 45, y: 56 }];
callback(result);
};
}
You call the detect
function with a callback, which will be called once the value is available:
detect('image.png', function(result){
alert(result);
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…