demo02 使用flutter发起http请求
程序员文章站
2022-05-29 12:09:20
...
首先要在pubspec.yaml里添加以下三方库
然后dependencies 下面的flutter里加上
dependencies:
flutter:
sdk: flutter
http: ^0.12.0+1
最后在命令行里输入flutter packages get 安装支持库
import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { // TODO: implement build return new MaterialApp( title: 'http请求示例', home: new Scaffold( appBar: new AppBar( title: new Text('http请求示例'), ), body: new Center( child: new RaisedButton( onPressed: (){ var url = 'http://httpbin.org/'; //向'http://httpbin.org/'发送get请求 http.get(url).then((response) { print("状态: ${response.statusCode}"); print("正文: ${response.body}"); }); }, child: new Text('发起http请求'), ), ), ), ); } }
推荐阅读
-
[日常] 使用TCPDUMP和Ethereal抓包分析HTTP请求中的异常情况
-
Flutter中http请求抓包的完美解决方案
-
nodejs 使用http进行post或get请求的实例(携带cookie)
-
python 使用 requests 模块发送http请求 的方法
-
Python中使用socket发送HTTP请求数据接收不完整问题解决方法
-
java发起http请求获取返回的Json对象方法
-
浏览器输入url到发起http请求所经历的过程
-
Angular使用$http.jsonp发送跨站请求的方法
-
使用php的HTTP请求的库Requests实现美女图片墙
-
ASP.NET Core扩展库之Http请求模拟功能的使用