gpt4 book ai didi

dart - 如何捕获 Aqueduct 中的张贴请求?

转载 作者:行者123 更新时间:2023-12-03 04:04:29 24 4
gpt4 key购买 nike

在channel.dart中,我的路由器配置如下所示。但是我无法将内容类型设置为文本;

router.route('/login/[:value]').link(() {
return new LoginController();
//..contentType = ContentType.TEXT;
});

在自定义 Controller 中,我将发布请求传递给了Future(如下所示)
    Future<RequestOrResponse> handle(Request request) async {
String _xRequestValue = request.toString();

我明白了;

打印(xRequestValue); // GET / login / Q101: :49785:_:x(1530612696990)

我可以打印该值,如上面的注释所示。我需要在请求中获得 Q101::49785::x 部分。我的问题是如何在 Aqueduct 中捕获后期要求?

最佳答案

这很简单;

if (request.path.variables.containsKey('value')) {
_xRequestValue = (request.path.variables['value']).trim();


}

关于dart - 如何捕获 Aqueduct 中的张贴请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51152164/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com