我一直在尝试处理 Aqueduct 中的张贴请求。阅读文档后,这就是我所能想到的
channel.dart

 router
.route("/chat")//"/chat/[:id]")
.link(() => ChatController());

chatController.dart
> import 'package:web_api/web_api.dart';

    class ChatController extends ResourceController{

      @Operation.get('id')
      Future<Response> getProjectById(@Bind.path("id") int id) async {
        // GET /chat/:id
        print(id);
        //return Response.ok({"key": "value"});
      }

      @Operation.post()
      Future<Response> createChat(@Bind.body() Chat chat) async {
        // POST /project

        print("post");
        final Map<String, dynamic> body = await request.body.decode();
        final name =body['name'] as String;
        print(" 1) name ==> $name");

        //return Response.ok({"key": "value"});
      }

    }
    class Chat extends Serializable{
       int id;
      String name;

      @override
      void readFromMap(Map<String, dynamic> map) {
        id = map['id'] as int;
        name = map['name'] as String;
      }

      @override
      Map<String, dynamic> asMap() {
        return {
          'id': id,
          'name': name
        };
      }
}

最后是html模板
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <form action="http://127.0.0.1:8888/chat" method="POST">
        <input id="id" name="id">
        <input id="name" name="name">
        <button type="submit">Submit</button>
    </form>

</body>
</html>

Aqueduct 不提供html模板。在一起是一个不同的位置。
当我提交表单时,我的控制台日志。
[INFO] aqueduct: Server aqueduct/2 started.
[INFO] aqueduct: POST /chat 15ms 415

为什么我看不到 body 内容,我怎么能看到 body (表单值)

最佳答案

您收到415媒体类型不受支持的错误。您可以在日志中看到它,也可以在客户端响应中看到它。

默认情况下,ResourceController仅接受application/json数据。您必须在 Controller 中设置acceptedContentTypes以获取表单数据。最简单的方法是覆盖ChatController中的属性:

class ChatController {
  ...
  @override
  List<ContentType> acceptedContentTypes = [ContentType("application", "x-www-form-urlencoded")];
  ...
}

关于post - 在 Aqueduct Dart 中发出请求后产量415介质类型不受支持,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52883777/

10-13 08:59