gpt4 book ai didi

javascript - Node - ReferenceError : Promise is not defined

转载 作者:搜寻专家 更新时间:2023-10-31 23:04:38 29 4
gpt4 key购买 nike

我开始使用 Node。抱歉,这可能是一个愚蠢的问题。

试图理解为什么下面的代码会抛出错误:ReferenceError: Promise is not defined

allAccountFixtures: ['account-customer-joe', 'account-partner-sam', 'account-partner-jane', 'account-admin-jill'],
allProductFixtures: ['product-123', 'product-234', 'product-345', 'product-456'],
...
loadBasicFixtures: (Api) => {
return Promise.all([
Support.importRecords(Api.accountsAPI, Support.allAccountFixtures),
Support.importRecords(Api.productsAPI, Support.allProductFixtures)
]);
},

我的 API 在别处定义为:

this.accountsAPI = app.service('/api/accounts');
this.productsAPI = app.service('/api/products');

导入函数为:

importRecords: (feathersService, fixtureNames) => {
// Wrap in an array if there's only one.
if (!(fixtureNames instanceof Array)) { fixtureNames = [fixtureNames]; }

// Create a separate promise for each JSON fixture to load the JSON from a
// file and send it to feathers.create(). Don't execute yet.
var promises = fixtureNames.map(fixtureName => {
var filePath = `test/fixtures/json/${fixtureName}.json`;
// console.log(`-> Loading JSON fixture: ${filePath}`);

return fs.readFileAsync(filePath, 'utf8')
.then((jsonString) => {
return JSON.parse(jsonString);
}).then((json) => {
return feathersService.create(json);
});
});

// Wrap all fixture loading promises inside a single outer promise that will
// fire when all of the child promises are complete.
return Promise.all(promises);
},

不知道所提供的信息是否足以说明正在发生的事情。我查找了“ promise ”的概念,仅此而已。也许你可以指出正确的方向。文档中提到 resolve 和 reject。

最佳答案

我会把我的评论变成一个答案,因为它解决了你的问题。

一些旧版本的 node.js 没有内置的 promise,要使用它们需要加载第三方库来添加 promise 支持。

如果您升级到 node.js 的任何 4.x 版本或更新版本,您将拥有 node.js 内置的 promise 。

关于javascript - Node - ReferenceError : Promise is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34107925/

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