您的当前位置:首页flutter中都http库

flutter中都http库

2024-12-13 来源:哗拓教育
dependencies:
  http: ^0.12.0

保存后,在vscode中ctrl+~唤出命令行
输入命令

flutter packgets get

这样flutter就会自动下载和安装项目文件中需要都包。
(其实vscode自动检测到pubspec.yaml增加了包,会自动运行 flutter packgets get安装)

安装完成后,在代码中加入

import 'package:http/http.dart' as http;
//使用实例
loadData() async{ 
  var url = 
  http.Response response = await http.get(url);
  return response.body;
}

显示全文