如何将 promise 对象存储在变量中
How do I store a promise object inside a variable
我想知道如何将承诺作为对象存储在变量中
我的代码
读写函数
async function storage(data, key) {
await AsyncStorage.setItem(`${key}`, JSON.stringify(data));
}
async function read(key) {
return new Promise((resolve, reject) => {
AsyncStorage.getItem(`${key}`, (err, data) => {
if (err) reject(err);
resolve(data);
});
});
}
我正在存储的对象以及我如何调用我的函数
let testing = {
swipe1: {
key: 1,
text: "Swipe1Text changed",
},
swipe2: {
key: "2",
text: "Swipe2Text",
},
};
storage(testing, "tasks@today");
// I'm able to console.log the following
let readStorageSwipes = read("tasks@today").then((result) => {
return result;
});
console.log(readStorageSwipes.swipe1);
如果需要一些参考,我正在使用 following library,这是一个 React Native Expo 项目
假设你想存储 read promise,因为你在 read 函数中返回一个 promise,你可以直接存储 promise by
readPromise = read("tasks@today");
readPromise
变量将是一个 promise 对象
我想知道如何将承诺作为对象存储在变量中
我的代码
读写函数
async function storage(data, key) {
await AsyncStorage.setItem(`${key}`, JSON.stringify(data));
}
async function read(key) {
return new Promise((resolve, reject) => {
AsyncStorage.getItem(`${key}`, (err, data) => {
if (err) reject(err);
resolve(data);
});
});
}
我正在存储的对象以及我如何调用我的函数
let testing = {
swipe1: {
key: 1,
text: "Swipe1Text changed",
},
swipe2: {
key: "2",
text: "Swipe2Text",
},
};
storage(testing, "tasks@today");
// I'm able to console.log the following
let readStorageSwipes = read("tasks@today").then((result) => {
return result;
});
console.log(readStorageSwipes.swipe1);
如果需要一些参考,我正在使用 following library,这是一个 React Native Expo 项目
假设你想存储 read promise,因为你在 read 函数中返回一个 promise,你可以直接存储 promise by
readPromise = read("tasks@today");
readPromise
变量将是一个 promise 对象