对于未插入的值,出现此范围错误。
const createTransaction = async (yodleeAccountId, transaction) => {
try {
const savedRecord = await YodleeTransaction.create({
YodleeAccountID: 373,
YodleeID: 1887219837,
Amount: 40518.32,
AmountCurrency: 'USD',
BaseType: 'CREDIT',
Container: 'bank',
PostDate: '2016-03-19',
OriginalDescription: 'info about transaction',
SimpleDescription: 'info',
CategoryID: '2',
Category: 'giving idk',
CategoryType: 'the important type',
})
console.log('post create')
return savedRecord
} catch (error) {
console.error('error finally caught', error)
return error
}
}
YodleeTransaction模型:
module.exports = (sequelize, type) => {
return sequelize.define(
'YodleeTransaction',
{
ID: { type: type.BIGINT, primaryKey: true, autoIncrement: true },
YodleeAccountID: { type: type.BIGINT, allowNull: false },
YodleeID: { type: type.BIGINT, allowNull: false },
Amount: { type: type.DECIMAL(12, 2), allowNull: false },
AmountCurrency: { type: type.STRING(3) },
BaseType: { type: type.STRING(25), allowNull: false },
Container: { type: type.STRING(50) },
PostDate: { type: type.DATE, allowNull: false },
OriginalDescription: { type: type.STRING(800) },
SimpleDescription: { type: type.STRING(500) },
CategoryID: { type: type.INTEGER },
Category: { type: type.STRING(50) },
CategoryType: { type: type.STRING(50) },
},
{ freezeTableName: true, tableName: 'YodleeTransaction' }
)
}
错误:
RangeError [ERR_OUT_OF_RANGE]:“值”的值超出范围。必须为> = 0和<=4294967295。已收到9433906525
我知道9433906525是基于Amount
的,因为当我更改Amount
时,错误消息中的值会更改。
例如,如果我将金额从40518.32更改为8989.33,则收到的新值为10728568304。
新错误:
RangeError [ERR_OUT_OF_RANGE]:“值”的值超出范围。必须为> = 0和<=4294967295。已收到10728568304
答案 0 :(得分:1)
这似乎是Sequelize中的错误。 异步执行过多插入或更新操作会导致这种情况发生。 我不知道具体如何解决此问题,但是我可以告诉您如何解决它。
上述创建错误的解决方案是使用bulkCreate
并将其传递给对象数组。
如果您正在使用t-sql进行更新,则Sequelize不提供bulkUpdate
方法。因此,您应该只在sequelize.query('UPDATE YodleeTransaction SET Amount=344.88')
内手动写出更新查询。