gpt4 book ai didi

javascript - 如何在 npm 包函数中创建全局变量

转载 作者:行者123 更新时间:2023-12-03 03:58:28 25 4
gpt4 key购买 nike

我正在使用 npm papercut https://www.npmjs.com/package/papercut我想访问 Papercut 函数中的变量值。这就是我到目前为止所拥有的。

我想在函数外部访问变量 NewImg 的变量 Img 的值,我试图使用全局变量来做到这一点。任何人看到我的问题或有任何建议。

var NewImg = {}

uploader.process('image1', file.path, function(images){
var Img = images.avatar
NewImg.input = Img
console.log(Img);
})
console.log(NewImg.input)

这会注销未定义

最佳答案

看起来像一些异步代码。回调可能不会在 console.log() 之前调用,因此您的 NewImg.input 未定义。

此外,var NewImg.input = Img 在语法上不正确,请删除 var

更新

了解有关异步 javascript 的更多信息:Asynchronous Javascript

var NewImg = {}

uploader.process('image1', file.path, function(images){
// I'm a callback function in an asynchronous method!
// I will run sometime in the future!
var Img = images.avatar
NewImg.input = Img
console.log(Img);
})
// Oh no! I ran before the callback function in the *asynchronous* method above, before NewImg.input is assigned any value
console.log(NewImg.input)

关于javascript - 如何在 npm 包函数中创建全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44836373/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com