Why copy function is not working inside setTimeout?

丶灬走出姿态 提交于 2019-12-10 03:59:52

问题


Chrome complains when I try to copy inside setTimeout.

setTimeout(function () { copy('a') }, 0)

Uncaught ReferenceError: copy is not defined
    at <anonymous>:1:26

It doesn't work with the window scope as well.

setTimeout(function () { window.copy('a') }, 0)

Uncaught TypeError: window.copy is not a function

Interestingly, if I keep the reference to copy and reuse it, it works

cc = copy;
setTimeout(function () { cc('a') }, 0);

In Firefox, it doesn't throw any error, but it doesn't work even with the saved reference.

Why copy function doesn't work inside setTimeout, is it a bug?


回答1:


copy is part of the developer tools' Command Line API and is not available outside the browser console. For example, trying to execute the command in a JavaScript file that's part of a normal web page you'd get the same error.

When you invoke the command inside the setTimeout callback, the execution context is no longer the console so copy doesn't exist anymore.




回答2:


Inspired by the mention of with in this answer, I discovered that you can use it to make copy() available in setTimeout() and other callbacks, instead of having to create a global reference to it:

with ({ copy }) { setTimeout(() => copy("copied!"), 0) }

copied! will now be on your clipboard. Unfortunately, this trick doesn't seem to work in Firefox's console.



来源:https://stackoverflow.com/questions/49028762/why-copy-function-is-not-working-inside-settimeout

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!