6

Dart を使用して HTTP サーバーを作成しましたが、フォームの送信を解析したいと考えています。具体的には、HTML フォームから x-url-form-encoded フォームの送信を処理したいと考えています。dart:ioライブラリでこれを行うにはどうすればよいですか?

4

1 に答える 1

9

HttpBodyHandler クラスを使用して、HTTP 要求の本文を読み取り、それを有用なものに変換します。フォーム送信の場合は、マップに変換できます。

import 'dart:io';

main() {
  HttpServer.bind('0.0.0.0', 8888).then((HttpServer server) {
    server.listen((HttpRequest req) {
      if (req.uri.path == '/submit' && req.method == 'POST') {
        print('received submit');
        HttpBodyHandler.processRequest(req).then((HttpBody body) {
          print(body.body.runtimeType); // Map
          req.response.headers.add('Access-Control-Allow-Origin', '*');
          req.response.headers.add('Content-Type', 'text/plain');
          req.response.statusCode = 201;
          req.response.write(body.body.toString());
          req.response.close();
        })
        .catchError((e) => print('Error parsing body: $e'));
      }
    });
  });
}
于 2013-06-06T03:14:14.183 に答える