我已经在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
答案 0 :(得分:0)
您不需要将其添加到pubspec中,只需将其导入到使用它的位置即可:
import 'package:http/http.dart' as http;