0

我使用“表单”将数据发送到我的网络服务器。前端:

<form action="http://localhost:3131/users" method="POST" enctype="multipart/form-data" target="_blank">
    <fieldset>
        <label for="name">Name:</label>
        <input type="text" id="name" name="name"/>
    </fieldset>
    <fieldset>
        <label for="age">Age:</label>
        <input type="text" id="age" name="age"/>
    </fieldset>
    <fieldset>
        <label for="wl">Wl:</label>
        <input type="text" id="wl" name="wl"/>
    </fieldset>
    <fieldset>
        <input type="submit" value="Submit"/>
    </fieldset>
</form>

后端代码, Github 链接

var app     = require('koa')(),
router  = require('koa-router')(),
koaBody = require('koa-body')();

router.post('/users', koaBody,
  function *(next) {
    console.log(this.request.body);
    // => POST body
    this.body = JSON.stringify(this.request.body);
  }
);

app.use(router.routes());

app.listen(3131);
console.log('curl -i http://localhost:3131/users -d "name=test"');

但结果是 --> this.request.body 是 {}。

我究竟做错了什么?

4

1 回答 1

0

您正在使用multipart/form-data表单数据编码,因此在您的服务器代码中,您应该将正确的选项传递给koa-body构造函数。

kaoBody = require('koa-body)({ multipart: true });
于 2016-05-15T06:04:46.693 回答