gpt4 book ai didi

http - http lib 上奇怪的 Dart 编译器警告

转载 作者:可可西里 更新时间:2023-11-01 17:10:26 25 4
gpt4 key购买 nike

我正在尝试使用 Dart 的 http用于发出简单 HTTP GET 和 POST 请求的库:

import 'package:http/http.dart' as http;
import 'package:http/src/response.dart';

void main() {
String json = getSomeJSONString();
http.post(url, body: json, encoding: Encoding.getByName("UTF-8")).then(onResponse);
}

void onResponse(Response response) {
// Do something
}

当我通过 pub build 运行它时,我得到:

[Dart2JS on myapp-client|web/myapp_client.dart]:Building myapp-client......

[Dart2JS on myapp-client|web/myapp_client.dart]:
../../../../../sandbox/workbench/dart/dart/dart-sdk/lib/core/uri.dart:1133:17: Info: This is the method declaration.packages/http/src/utils.dart:41:42: Warning: Arguments do not match the expected parameters of 'encodeQueryComponent'.
static String encodeQueryComponent(String component) {
^^^^^^^^^^^^^^^^^^^^

[Dart2JS on myapp-client|web/myapp_client.dart]:pairs.add([Uri.encodeQueryComponent(key, encoding: encoding),

../../../../../sandbox/workbench/dart/dart/dart-sdk/lib/core/uri.dart:1133:17: Info: This is the method declaration.
static String encodeQueryComponent(String component) {
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

[Dart2JS on myapp-client|web/myapp_client.dart]:
packages/http/src/utils.dart:42:42: Warning: Arguments do not match the expected parameters of 'encodeQueryComponent'.
Uri.encodeQueryComponent(value, encoding: encoding)]));
^^^^^^^^^^^^^^^^^^^^^^^^^^^
[Dart2JS on myapp-client|web/myapp_client.dart]:
packages/http/src/utils.dart:41:58: Warning: No named argument 'encoding' found on method.
pairs.add([Uri.encodeQueryComponent(key, encoding: encoding),
^^^^^^^^
[Dart2JS on myapp-client|web/myapp_client.dart]:
packages/http/src/utils.dart:42:60: Warning: No named argument 'encoding' found on method.
Uri.encodeQueryComponent(value, encoding: encoding)]));
^^^^^^^^
[Info in Dart2JS]:
Generated myapp-client|web/myapp_client.dart.js (246641 characters) in 0:00:09.640230
Built 14 files!

那么几个问题:

  1. 这些警告是什么,为什么我会收到它们?
  2. 我需要做什么才能让它们消失(修复它们)?
  3. 如果此 http 库是 Dart 语言/核心的一部分,为什么我需要将其作为依赖项包含在内?

最佳答案

http 包依赖于dart:io,Web 客户端应用程序不可用,因此您将无法使用它(这不是源代码你的警告,但是当你无论如何都不能使用这个包时调试它们没有多大意义。

使用像 adaj 这样的东西相反。

据我所知,http 包不是 Dart 核心库的一部分,尽管它是由 Dart 团队开发的。我不完全确定将库作为 Dart 核心的一部分的决定是什么(dart: 前缀)。在这种情况下,我假设这是因为 dart:io 已经有 http support .

关于http - http lib 上奇怪的 Dart 编译器警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20789098/

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