请求
pubspec.yaml文件中dev_dependencies下加: http: ^0.11.3+17
1
2
3
4dev_dependencies:
flutter_test:
sdk: flutter
http: ^0.11.3+17引入
import ‘package:http/http.dart’ as http;- 使用
1
2
3
4
5
6String url = 'http://localhost:9002/tabs';
var res = await http.get(url);
List list = json.decode(res.body);
setState(() {
newTitle = list;
});