0

我有一个反应应用程序,我想将价值传递给 koa 服务器。

let data = new FormData()
  data.append('json', JSON.stringify(token))

  fetch('/charge', { method: 'POST', body: data })
    .then((res) => {
      return res.json()
    })
    .then((json) => {
      console.log('something wrong')
      console.log(json)
    })

下面是我的服务器代码

const config = require('../config')
const server = require('../server/main')
const router = require('koa-router')()
const parse = require("co-body")

const port = config.server_port

server.use(router.routes())

router
  .post('/charge', function (ctx, next) {
    console.log(ctx.request.body)
    console.log('howyd')
    ctx.body = "howdy"
  })

只是无法获得从客户端传递下来的价值。你们知道是怎么回事吗?

4

1 回答 1

0

确保您使用的是正文解析器。看起来你需要它,但实际上并没有使用它。像这样的东西(未经测试):

const config = require('../config')
const server = require('../server/main')
const router = require('koa-router')()
const parse = require("co-body")

const port = config.server_port

server.use(router.routes())

router
  .post('/charge', async (ctx, next) => {
    let body = await parser.json(ctx.request)
    console.log(body)
    console.log('howyd')
    ctx.body = "howdy"
  })
于 2016-02-11T20:50:15.727 回答