- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有很多 promise ,我需要导出其结果值。该值实际上是与嵌入式数据库的连接。
问题是我有几个中间件 promise 在解析最终数据库资源之前处理连接。我为数据库中的每个集合执行此操作。
如果我多次使用该方法,我将使用它自己的中间件的许多副本创建到该数据库的多个连接,这些中间件可能会变得相当大。我如何将这个 promise 和所有其他 promise 导出到一个最终对象中?
我应该创建一个单例类,在构造函数中解决 promise 并将集合项作为公共(public)变量吗?或者我应该如何解决将它们导出到对象中?
这只是集合连接之一。请注意,调用此方法时它会创建一个 new
集合。使用 IndexLoader 为每个集合创建内存中的二叉树。
这就是为什么我希望解析此方法并返回将作为集合的结果放入要在那里使用的对象中的原因。如果我要在整个应用程序中调用此方法,那么每次都会创建一个新的二叉树。
export const Users = (): Promise<Collection> => {
return new Promise<Collection>((resolve, reject) => {
const User: Collection = new Collection("Users");
const indexPromises: Array<Promise<any>> = [];
const uniqIndices: string[] = ["username"];
User.pre("save", setDefaults);
User.pre("update", updateDefaults);
uniqIndices.forEach((v) => {
indexPromises.push(IndexLoader(User, {fieldName: v, unique: true}));
});
Promise.all(indexPromises)
.then(() => {
resolve(User);
})
.catch(reject);
});
};
我觉得这样使用单例是合理的。
import {Users} from "./file"; // this is the method above
export interface IDB {
Users: Collection;
}
export class DB implements IDB {
public static getInstance() {
if (!DB.instance) {
DB.instance = new DB();
}
return DB.instance;
}
private static instance: DB;
public Users: Collection;
constructor() {
Users()
.then((res) => {
this.Users = res;
})
.catch(/** error handler */);
}
}
使用其他文件中的类与相同的连接和二叉树进行交互
import {DB} from "..";
let db = DB.getInstance();
db.Users.insert({/** new object */})
.then()
.catch()
最佳答案
如果我理解你的话,结果包含在 promise 中。因此,您应该简单地返回包含打开的连接的对象,然后将其包装在已解决的 promise (then
) 中,您应该能够在 then
中执行操作。
这是我拼凑的粗略 javascript 示例。
var p1 = new Promise((res, rej) => {
res( something_to_get_my_connection(input) ); //resolve the promise with the connection
}).then( (con) => {
//Use connection.
});
如果你的意思是你想要它在 promise 结构之外,我以前见过这个:
let myEstablishedConnection = null;
var p2 = new Promise((res, rej) => {
res( something_to_get_my_connection(input) ); //resolve the promise with the connection
}).then( (con) => {
//Use connection.
myEstablishedConnection = con;
continueProgram(); //This can be several things but I'm assuming the remaidner of the implementation is here.
});
并且没有通常不受欢迎的外部范围变量:
var p3 = new Promise((res, rej) => {
res( something_to_get_my_connection(input) ); //resolve the promise with the connection
}).then( (con) => {
continueProgram(con); //This can be several things but I'm assuming the remainder of the implementation is started here.
});
要等待所有的 promise ,您可以使用以下内容:
Promise.all([p1,p2, p3]).then( () => { proceed(); } );
(这些例子不在我的脑海中,如果有错字或不一致,我深表歉意。promise.all 的用法显然是人为的。)
关于javascript - 我将如何导出已解决的 promise ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45150963/
如何从 promise 中退出 promise ? perl6 文档没有提供简单的方法。例如: my $x = start { loop { # loop forever until "qui
我的用户 Controller 中有一个索引操作,其中我试图连续做两件事,并且在它们都有机会完成之前不执行所需的 res.json() 方法。 我有一个加入用户的友谊加入模型。一列是 friender
请帮我解释一下为什么日志结果有两种不同: 方式 1:每 1 秒顺序记录一次 方式 2:1 秒后记录所有元素。 // Way 1 let sequence = Promise.resolve(); [1
我的问题很简单。 Promise.all() 方法可以返回 Promise 吗?让我解释一下: function simpleFunction() { let queue = [];
我正在使用 Promise 从存储中读取文件并转换为 base64 字符串。我有图像数组,使用 RNFS 读取图像 const promise_Images = _Images.map(async (
如果使用非空数组调用 Promise.all 或 Promise.race,它们将返回一个待处理的 Promise: console.log(Promise.all([1])); // prints
Promise.all 是否可以在没有包装 promise 的情况下返回链的最后一个值? 如果不使用 await,它在我的上下文中不起作用 没有包装的例子: function sum1(x){ r
我一直在玩 promise,通常能想出如何处理好它们,但在这种情况下,我不知道如何删除一个 promise-wrapping level。 代码如下: let promise2 = promise1.
考虑以下嵌套的Promises结构: const getData = async() => { const refs = [{ name: "John33", age: 3
我已经阅读了 Promise/A+ 规范,但据我了解,还有诸如 Promise/A 和 Promise 之类的东西。它们之间有什么区别? Promise 和 Promise/A 规范也是如此吗?如果是
当我运行以下代码时: my $timer = Promise.in(2); my $after = $timer.then({ say "2 seconds are over!"; 'result'
以下简单的 promise 是发誓的,我不允许打破它。 my $my_promise = start { loop {} # or sleep x; 'promise re
我正在尝试扩展Promise: class PersistedPromise extends Promise { } 然后在派生类上调用静态resolve以直接创建一个已解决的Promise: Per
我有两个返回 promise 的函数,我独立使用它们作为: getLocal().then(...) 和 getWeb().then(...) 但是现在我遇到了一个奇怪的问题: 1) 我需要第三个
我不知道 promise.all 解决方案中的 promise.all 是否是一个好的实践。我不确定。 我需要从一组用户获取信息,然后通过此信息响应,我需要发送消息通知。 let userList =
我一直在尝试使用 queueMicrotask() 函数,但我没有弄清楚当回调是微任务时回调的优先级如何。查看以下代码: function tasksAndMicroTasks() { const
我一直在尝试使用 queueMicrotask() 函数,但我没有弄清楚当回调是微任务时回调的优先级如何。查看以下代码: function tasksAndMicroTasks() { const
今年早些时候,我在 Pharo Smalltalk 参与了一个 promise 项目。这个想法是为了实现以下行为: ([ 30 seconds wait. 4 ]promiseValue )then:
大家好,提前感谢您的帮助。 下面是我正在尝试做的事情 function1(){ throw some error(); } function2() { // dosomething suc
我有以下未解析的代码。f2 解决了,所以我不会添加该代码,它是 f1 我有问题。 我调用函数,它到达最里面如果,它调用函数“find”,它执行函数 findId,完美返回 Id,然后执行 editId
我是一名优秀的程序员,十分优秀!