0

我已经使用 Flutter for web 几天了,现在我已经到了需要向 API 发出 HTTP 请求以获取一些数据的地步,但是当我在其中包含httppubspec.yaml并运行应用程序时,它确实不工作,但是当我删除包并重新运行应用程序时,它工作正常。

这是我在将http包包含在内后运行应用程序时收到的错误消息pubspec.yaml

Resolving dependencies...
Git error. Command: git fetch
fatal: not a git repository (or any of the parent directories): .git
exit code 69
4

1 回答 1

0

您无需将其添加到 pubspec,只需将其导入您使用它的位置:

import 'package:http/http.dart' as http;
于 2019-09-10T15:18:22.307 回答