作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试提取用户数据,而不是在另一个函数中使用返回的结果。我正在尝试使用 async/await 来实现它,但没有成功。
const userAllowedToDeploy = (user_id, project) => {
controller.storage.users.get(user_id, async function(err, user) {
result = await (some calculations related to returned user here);
return result;
});
});
controller.hears(['^deploy (\\w+)'], 'direct_mention, mention', function(bot, message) {
let channel = message.channel;
let project = message.match[1];
result = userAllowedToDeploy(message.user, project)
console.log('final result: ' + result);
但由于某种原因最终结果是未定义
最佳答案
我已经设法让它与 Promises 一起工作。但我仍然很想知道如何使用 async/promise 重写它。
const userAllowedToDeployWithPromise = (user_id, project, env) => {
return new Promise(function(resolve, reject) {
controller.storage.users.get(user_id, function(err, stored_user) {
let result = (some calculations from stored_user here);
resolve(result);
});
});
};
controller.hears(['^deploy (\\w+) (\\w+)'], 'direct_mention, mention', function(bot, message) {
let channel = message.channel;
let project = message.match[1];
let allowed_promise = userAllowedToDeployWithPromise(message.user, project);
allowed_promise.then(function(allowed) {
if(allowed) {
deployProject(project);
} else {
// some message here
}
});
关于javascript - Botkit - 异步拉取用户数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53004040/
This question already has answers here: Using Variable for Thread group Ramp up time (3个答案) 3年前关闭。 从
我希望使用 RPyC 为硬件板提供 API 作为服务。该板一次只能满足一个用户的需求。有什么方法可以让 RPyC 强制执行一次只有一个用户可以访问吗? 最佳答案 我不确定这是否有效(或有效),但您可以
如果我想以每秒 10 个请求运行测试。如何让 Jmeter 选择每秒处理该请求数所需的最佳线程数。 我将线程数设置为与每秒请求数相同。 最佳答案 您可以使用恒定吞吐量计时器 click here你只需
我正在尝试进行查询以检查客户表并返回过去 30 天、过去 365 天和所有时间具有特定值的用户数。 所有时间的计数很简单: $stmt = $conn->prepare("SELECT count(i
我是一名优秀的程序员,十分优秀!