如何在返回结果之前执行图像 onload 函数内部的代码?

发布于 2024-12-09 21:30:29 字数 754 浏览 1 评论 0原文

我想返回在图像 onload 函数内部执行的代码。代码是:

function loadImage() {
  var data = null;
   var image = new Image();
   image.onload = function() {
     console.log("I am inside of image load function");
     data = "I am inside";
   }
   image.src="flower.jpg";
   console.log("I am outside of image load function");

   console.log(data);
   return data;
}

Firefox 控制台中的结果是:

I am outside of image load function
null
I am inside of image load function

我想要的是,上面的代码应该返回图像 onload 函数内部分配的数据值,即我希望返回的数据是“我在里面”。即

I am inside of image load function
I am outside of image load function
I am inside

怎样做才能达到预期的结果?

或者

如何首先执行图像 onload 函数内部的代码,然后仅执行函数外部的代码?

I want to return code executed inside of image onload function. The code is :

function loadImage() {
  var data = null;
   var image = new Image();
   image.onload = function() {
     console.log("I am inside of image load function");
     data = "I am inside";
   }
   image.src="flower.jpg";
   console.log("I am outside of image load function");

   console.log(data);
   return data;
}

And the result in firefox console is :

I am outside of image load function
null
I am inside of image load function

What i want is, the above code should return the value of data assigned inside of image onload function i.e. i want the returned data to be "I am inside". i.e.

I am inside of image load function
I am outside of image load function
I am inside

What to do get to the desired result ?

or

How to execute the code inside of the image onload function first and then only outside of the function ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尛丟丟 2024-12-16 21:30:29

我猜上面的例子是其他东西的简化样本?

不太确定你想要实现什么,但是看看你的代码,你明白为什么 null 会出现在它出现的地方吗?

data 在执行 console.log(data) 时可能为 null,因为图像尚未完成加载。

当图像加载时您希望发生什么,但您不能在卸载事件处理程序中实现它吗?

I'm guessing that the example above is a boiled down sample of something else?

Not quite sure what you're trying to achieve but looking at your code do you understand why the null comes where it does?

data maybe null at the the point console.log(data) is executed because the image hasn't finished loading.

What do you want to happen when the image loads and can't you make it happen from within the unload even handler?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文