使用方法POST多次获取错误响应 - NodeJS + Express +使用Promise进行Sequelize

时间:2018-04-15 13:57:44

标签: javascript node.js express promise sequelize.js

我正在尝试制作API。但是我收到Sequelize Promise服务器的错误回复。

我的服务器:

const express = require('express');
const sequelize = require('sequelize');
const app =  express();
const db = new sequelize({
    database: 'test',
    username: 'postgres',
    password: 'test',
    host: 'localhost',
    port: 5432,
    dialect: 'postgres',
    dialectOptions: {
        ssl: false
    }
});
User = db.define('user',{
    username: { type: sequelize.STRING },
    balance: { type: sequelize.INTEGER },
});
db.authenticate()
    .then(()=> console.log("Connect to Database success!"))
    .catch(error=> console.log(error.message));

app.post("/test", (req,res)=>{
    User.findById(1, {raw: true})
        .then(user=>{
            if(user.balance < 5000) res.json({message: "FALSE!"});
            else {
                User.update({balance:user.balance - 5000},{ where: {id : 1 }});
                res.json({message: "TRUE!"})
            }
        })
});

const port = 6969;
app.listen(port,()=> console.log(`Sever stated at localhost:${port}`));

我创建了一个用户:id:1,用户名:测试,余额: 5000

然后我通过Chrome控制台抓取:

const create = () => {
    fetch("http://localhost:6969/test",{method:"POST"})
        .then(res=>res.json())
        .then(json=>console.log(json))
}

for(let i=0;i<10;i++) create()

我收到 6 响应消息 TRUE 4 响应消息 FALSE

this is ScreenShot

但我替换方法帖子 =&gt; 得到没关系???? 为什么?感谢

1 个答案:

答案 0 :(得分:0)

要改进代码,还有几件事要做。首先,/ test路由应该在返回之前完成更新...

app.post("/test", (req,res)=>{
    User.findById(1, {raw: true})
    .then(user=>{
        return (user.balance < 5000)? "FALSE!" : User.update({balance:user.balance - 5000},{ where: {id : 1 }}).then(() => "TRUE!");
    })
    .then(result => res.json({message: result})
    .catch(error => res.error(error));
}

接下来,调用方的循环应该累积promises,然后一起执行它们all() ...

let promises = [];
for(let i=0;i<10;i++) promises.push(create());

Promise.all(promises)
.then(results => console.log(results))
.catch(error => console.log(error))