每个Koa路线404s(打字稿)

时间:2019-02-25 19:54:32

标签: javascript node.js typescript koa koa-router

问题
  • 设置身份验证控制器
  • 使用Bcrypt和JWT
  • 所有对Koa 404ing的POST呼叫
  • 打通其他路线的电话
  • 可能是代码范围的问题。
import * as Router from 'koa-router';
import * as bcrypt from 'bcrypt';
import User from '../models/user';

const router: Router = new Router();

/**
 * Signup new Users
 */

router.post('/signup', async ctx => {
    const { username, password, email } = ctx.request.body;
    bcrypt.hash(password, 10, (err, hash) => {
        if (err) {
            ctx.status = 500;
        } else {
            const user = new User({
                username,
                password: hash,
                email,
            });

            user.save()
                .then(result => {
                    ctx.status = 201;
                })
                .catch(err => {
                    if (err) {
                        ctx.response.status = 500;
                    }
                });
        }
    });
});

/**
 * Log in users
 */

router.post('/login', async ctx => {
    const { email, password } = ctx.request.body;
    User.findOne({ email }, (err, user) => {
        if (err) {
            ctx.status = 401;
            ctx.body = 'Auth Failed.';
        }
        bcrypt.compare(user.password, password, (err, result) => {
            if (err) {
                ctx.status = 401;
                ctx.body = 'Auth Failed.';
            }
            if (result) {
                ctx.status = 200;
                ctx.body = 'Auth Successful';
            } else {
                ctx.status = 401;
                ctx.body = 'Auth Failed';
            }
        });
    });
});

export default router;

我没有努力 生成密码或将用户保存到 数据库和我正在接收数据到 从控制器服务器唯一 是我的服务器没有发回任何东西,但是 404错误。

import * as Koa from 'koa';
import * as dotenv from 'dotenv';
import * as mongoose from 'mongoose';
import * as cors from '@koa/cors';
import * as bodyParser from 'koa-body';
import bookRouter from './routes/book';
import userRouter from './routes/user';
dotenv.config();

const app: Koa = new Koa();

mongoose.connect(process.env.MGO_URI, { useNewUrlParser: true }).catch(error => {
    console.log(error);
    console.log('\n application shutting down for safety \n');
    process.exit(1);
});

// application wide middleware
app.use(cors());
app.use(bodyParser());

// application routes
app.use(userRouter.routes());
app.use(bookRouter.routes());

app.listen(3000);
console.log('Server running on port 3000');

1 个答案:

答案 0 :(得分:0)

首先,如果您使用的是caret请求处理程序,则应使用async。它使代码更整洁。我认为这应该可行(尽管await不能兑现诺言,但我认为不是,但是我认为确实如此),例如:

bcrypt