- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为模块声明和初始化一个具有全局范围的 const 变量,它需要从异步/等待的结果中获取值。这是我试过的代码,变量仍然未定义。我怎样才能重写这个,这样我仍然可以使用一个常量并且它包含所需的值:
const puppet = require('puppeteer')
const browser = (async () => { await puppet.launch() })();
const page = (async () => { await browser.newPage() })();
console.log( "browser holds: " + util.inspect(page) );
// prints out undefined
我需要设置两个单独的页面,这两个页面将在整个应用程序中用于加载不同的页面并根据需要进行处理。
现在,我可以通过将变量声明为“var”然后在 .then() 中赋值来实现这一点。但我更愿意为这些使用“const”作为最佳实践。
下面是允许我将此作为 var 执行并在整个应用程序中使用它的代码:
const puppet = require('puppeteer')
async function setupNewPuppetWithKeys(puppetBrowser, puppetPage ){
let browser = await puppet.launch();
let page = await browser.newPage();
page.setViewport({ width: 1280, height: 800 });
logger.infoLog("initialized values for - " + puppetBrowser + ", " + puppetPage )
return { [puppetBrowser] : browser , [puppetPage] : page };
}
var browserDev, pageDev;
setupNewPuppetWithKeys("browserDev", "pageDeV").then( (jsonResult) => {
logger.infoLog("In Then received : " + util.inspect(jsonResult) );
browserDev = jsonResult.browserDev;
pageDev = jsonResult.pageDev;
} );
// I declare more browser and page variables here .. but you get the idea with the one I've done above.
最佳答案
我在 node.js 上遇到了同样的问题,找不到答案,但后来尝试了这种技术,如果您使用的是 node.js,这可能会有所帮助。
诀窍是在异步函数内的global
对象上定义只读变量。该函数完成后,其他代码可以在整个应用程序中直接访问具有全局范围的变量。
这是一个说明该方法的测试脚本。如果有人有更简单的解决方案,我很想知道。
"use strict";
// Utility function to set a constant value on the global object
function setGlobalConst(constName, constValue){
console.log(` >> setGlobalConst ${constName} `);
if( typeof global[constName] !== "undefined" )
throw new Error(`Attempt to redefine global const ${constName}`);
Object.defineProperty(global, constName, { value: constValue, writable: false });
};
// This is the setter function for the global const ABC
// Note this does not need to be async, it returns a promise
// synchronously
function setABC () {
// Check for the global promise to set the value of ABC
if(typeof global.prmABC === "undefined" ){
console.log(" >> setABC called for the first time")
// Create the promise that will set the value of ABC some
// time in the future;
let setterPromise =
(
async function(){
await delay(2000);
setGlobalConst("ABC", "[VALUE OF ABC]");
console.log(" >> setter: global const ABC has now been set")
return ABC;
}
)()
// Save this promise in the global setter promise const prmABC
setGlobalConst("prmABC", setterPromise );
// Return the promise, which will resolve when ABC has been set
return setterPromise;
};
// As this has previously been called, we just
// need to return the promise that was previously
// saved in the global const prmABC.
console.log(" >> setABC has already been called")
return prmABC;
};
// Application code - this is async to ensure that
// it waits for the ABC setter to resolve before accessing
// the global const ABC.
async function run( ){
console.log(` 1. Before setting, global ABC=${global.ABC}`);
console.log(" 2. Calling setABC without waiting");
setABC();
console.log(` 3. Before setter has resolved, global ABC still =${global.ABC}`)
try{
console.log(" 4. Waiting on the original global setter promise.. delay here...:");
let myABC1 = await prmABC;
// The value returned by the resolved prmABC is the value of global const ABC
console.log(` 4a. >> Resolved value of global prmABC=${myABC1}`);
// Also, now that the setter promise is fulfilled, the global const ABC is set
console.log(` 4b. >> Global const ABC=${ABC}`);
console.log(" 5. We can also get the value of ABC by waiting on a call to setABC()");
let myABC2 = await setABC();
console.log(` 5a. >> Value returned from resolved setABC() is ${myABC2}`);
console.log(` 7. Accessing value of ABC directly: ABC=${ABC}`);
} catch(e) {
console.log(` ERROR: ${e.message}`)
};
console.log(" 8. Calling setABC() again, after it has finished, without waiting");
setABC();
console.log(` 9. Accessing value of global const ABC again: ABC=${ABC}`);
try{
console.log(" 10. Attempting to change value of ABC directly")
ABC = "New value of ABC";
} catch(e) {
console.log(` ERROR: ${e.message}`)
};
console.log(" Run finished---------------------------------");
};
run();
// Small utility function to provide async promise
function delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
这段代码的控制台输出是:
test> node testConstWithAsync
1. Before setting, global ABC=undefined
2. Calling setABC without waiting
>> setABC called for the first time
>> setGlobalConst prmABC
3. Before setter has resolved, global ABC still =undefined
4. Waiting on the original global setter promise.. delay here...:
>> setGlobalConst ABC
>> setter: global const ABC has now been set
4a. >> Resolved value of global prmABC=[VALUE OF ABC]
4b. >> Global const ABC=[VALUE OF ABC]
5. We can also get the value of ABC by waiting on a call to setABC()
>> setABC has already been called
5a. >> Value returned from resolved setABC() is [VALUE OF ABC]
7. Accessing value of ABC directly: ABC=[VALUE OF ABC]
8. Calling setABC() again, after it has finished, without waiting
>> setABC has already been called
9. Accessing value of global const ABC again: ABC=[VALUE OF ABC]
10. Attempting to change value of ABC directly
ERROR: Cannot assign to read only property 'ABC' of object '#<Object>'
Run finished---------------------------------
关于node.js - 在为全局 const 变量赋值时使用 Async/await,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60863519/
我的应用程序中有一个 settings.php 页面,它使用 $GLOBALS 来存储网络应用程序中使用的配置。 例如,他是我使用的一个示例设置变量: $GLOBALS["new_login_page
我正在尝试编译我们在 OS 类上获得的简单操作系统代码。它在 Ubuntu 下运行良好,但我想在 OS X 上编译它。我得到的错误是: [compiling] arch/i386/arch/start
我知道distcp无法使用通配符。 但是,我将需要在更改的目录上安排distcp。 (即,仅在星期一等“星期五”目录中复制数据),还从指定目录下的所有项目中复制数据。 是否有某种设计模式可用于编写此类
是否可以在config.groovy中全局定义资源格式(json,xml)的优先级,而不是在每个Resource上指定?例如,不要在@Resource Annotation的参数中指定它,例如: @R
是否有一些简单的方法来获取大对象图的所有关联,而不必“左连接获取”所有关联?我不能只告诉 Hibernate 默认获取 eager 关联吗? 最佳答案 即使有可能有一个全局 lazy=false(谷歌
我正在尝试实现一个全局加载对话框...我想调用一些静态函数来显示对话框和一些静态函数来关闭它。与此同时,我正在主线程或子线程中做一些工作...... 我尝试了以下操作,但对话框没有更新...最后一次,
当我偶然发现 this question 时,我正在阅读更改占位符文本。 无论如何,我回去学习了占位符。一个 SO 的回答大致如下: Be careful when designing your pl
例如,如果我有这样的文字: "hello800 more text 1234 and 567" 它应该匹配 1234 和 567,而不是 800(因为它遵循 hello 的 o,这不是一个数字)。 这
我一直在尝试寻找一种无需使用 SMS 验证系统即可验证电话号码(Android 和 iPhone)的方法。原因纯粹是围绕成本。我想要一个免费的解决方案。 我可以安全地假设 Android 操作系统会向
解决此类问题的规范 C++ 设计模式是什么? 我有一些共享多个类的多线程服务器。我需要为大多数类提供各种运行时参数(例如服务器名称、日志记录级别)。 在下面的伪 C++ 代码中,我使用了一个日志记录类
这个问题在这里已经有了答案: Using global variables in a function (25 个答案) 关闭 9 年前。 我是 python 的新手,所以可能有一个简单的答案,但我
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Does C++ call destructors for global and class static
我正在尝试使用 Objective-C 中的 ArrayList 的等价物。我知道我必须使用 NSMutableArray。我想要一个字符串列表 (NSString)。关键是我的列表应该可以从我类(c
今天刚开始学习 Android 开发,我找不到任何关于如何定义 Helper 类或将全局加载的函数集合的信息,我会能够在我创建的任何 Activity 中使用它们。 我的计划是创建(至少目前)2 个几
为什么这段代码有效: var = 0 def func(num): print num var = 1 if num != 0: func(num-1) fun
$GLOBALS["items"] = array('one', 'two', 'three', 'four', 'five' ,'six', 'seven'); $alter = &$GLOBALS
我想知道如何实现一个可以在任何地方使用您自己的设置的全局记录器: 我目前有一个自定义记录器类: class customLogger(logging.Logger): ... 该类位于一个单独的
我需要使用 React 测试库和 Jest 在我的测试中模拟不同的窗口大小。 目前我必须在每个测试文件中包含这个beforeAll: import matchMediaPolyfill from 'm
每次我遇到单例模式或任何静态类(即(几乎)只有静态成员的类)的实现时,我想知道这是否实际上不是一种黑客行为,因此只是为了设计而严重滥用类和实例的原则单个对象,而不是设计类和创建单个实例。对我来说,看起
这个问题在这里已经有了答案: Help understanding global flag in perl (2 个回答) 7年前关闭。 my $test = "There was once an\n
我是一名优秀的程序员,十分优秀!