为什么当我在pubspec.yaml中包含http包时,我的Flutter Web项目不起作用?

时间:2019-06-23 13:36:50

标签: flutter-web

我已经在Web上使用Flutter了几天,现在已经到达需要向API发出HTTP请求以获取一些数据的地步,但是当我包含http包时在pubspec.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

1 个答案:

答案 0 :(得分:0)

您不需要将其添加到pubspec中,只需将其导入到使用它的位置即可:

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