1

这是向我的服务器请求 POST 数据的 javascript 代码。当我打印出正文数据时,它似乎工作正常,但 Koa 甚至没有从请求中解析“正文”(使用koa-bodyparser)。我不知道为什么会发生这种情况,它确实像一周前一样工作。

浏览器

jQuery(document).ready(function($) {
    $(".mypage_container .btn-block").click(async() => {
        let payload = {
            email: $('#username').val(),
            password: $('#password').val(),
            country: $('#CountriesDropDownList').val(),
            firstname: $('#firstname').val(),
            lastname: $('#lastname').val(),
            gender: checkGender(),
            address1: $('#address1').val(),
            zipcode: $('#zipcode').val(),
            mobile: $('#mobile').val(),
            newsletter: newsLetter()
        }

        let option = {
            method: "POST",
            headers: {
              'Content-Type': 'application/json'
            },
            body: JSON.stringify(payload)
        }

        try {
            let res = await fetch('/signup', option)
        } catch (e) {
            console.error("failed to send signup request", e)
        }
    })

})

服务器

router.post('/signup', async (ctx, next) => {
    let data = ctx.request.body

    console.log(ctx.request.body, ctx.request) // says undefined on first variable, request info without 'body' from the request.
    try {
        let user = new User(data)
        await user.save()
        ctx.body = data
    } catch (e) {
        console.error(e)
    }
})
4

1 回答 1

2

您需要使用co-body来解析发布的数据:

const parse = require('co-body');

router.post('/signup', async (ctx, next) => {
    let data = await parse(ctx);
    console.log(data);
    try {
        let user = new User(data)
        await user.save()
        ctx.body = data
    } catch (e) {
        console.error(e)
    }
})

这应该工作...

于 2017-07-12T19:24:47.000 回答