赞
踩
除了普通的 HTTP 请求,你还可以通过 WebSockets 来连接服务器。WebSockets 可以以非轮询的方式与服务器进行双向通信。
在这里,你可以连接一个 由 websocket.org 提供的测试服务器。该服务器只会返回你发送的信息。
websocket.org 提供的测试服务器链接:https://www.websocket.org/echo.html
这个教程里包含以下步骤:
连接 WebSocket 服务器
监听来自服务器的消息
向服务器发送数据
关闭 WebSocket 连接
1. 连接 WebSocket 服务器
web_socket_channel 包提供了连接 WebSocket 服务器所需的一些工具。
该包提供的 WebSocketChannel
不仅可以让你监听到来自服务器的消息还可以让你向服务器推送消息。
在 Flutter 中,只用一行代码就可以创建一个连接到服务器的 WebSocketChannel
。
final channel = IOWebSocketChannel.connect('ws://echo.websocket.org');
2. 监听来自服务器的消息
StreamBuilder
组件来监听新消息,用
Text
组件来展示它们。
- StreamBuilder(
- stream: widget.channel.stream,
- builder: (context, snapshot) {
- return Text(snapshot.hasData ? '${snapshot.data}' : '');
- },
- );
WebSocketChannel
提供了一个来自服务器的
Stream
类消息。
Stream
类是
dart:async
包的基本组成部分。
它提供了一个从数据源监听异步事件的方法。
和
Future
不一样的是,
Future
只能返回一个单独的异步响应,而
Stream
类可以随着时间的推移传递很多事件。
StreamBuilder
组件会和
Stream
建立起连接,并且每当它接收到一个使用给定
builder
函数的事件时,就会通知 Flutter 去 rebuild。
WebSocketChannel
提供的
sink
下的
add()
方法来发送信息。
channel.sink.add('Hello!');
WebSocketChannel
提供了一个
Strea
mSink
来向服务器推送消息。
StreamSink
类提供了一个可以向数据源添加同步或者异步事件的通用方法。
sink
。
channel.sink.close();
- import 'package:flutter/foundation.dart';
- import 'package:web_socket_channel/io.dart';
- import 'package:flutter/material.dart';
- import 'package:web_socket_channel/web_socket_channel.dart';
-
- void main() => runApp(MyApp());
-
- class MyApp extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- final title = 'WebSocket Demo';
- return MaterialApp(
- title: title,
- home: MyHomePage(
- title: title,
- channel: IOWebSocketChannel.connect('ws://echo.websocket.org'),
- ),
- );
- }
- }
-
- class MyHomePage extends StatefulWidget {
- final String title;
- final WebSocketChannel channel;
-
- MyHomePage({Key key, @required this.title, @required this.channel})
- : super(key: key);
-
- @override
- _MyHomePageState createState() => _MyHomePageState();
- }
-
- class _MyHomePageState extends State<MyHomePage> {
- TextEditingController _controller = TextEditingController();
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: Text(widget.title),
- ),
- body: Padding(
- padding: const EdgeInsets.all(20.0),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Form(
- child: TextFormField(
- controller: _controller,
- decoration: InputDecoration(labelText: 'Send a message'),
- ),
- ),
- StreamBuilder(
- stream: widget.channel.stream,
- builder: (context, snapshot) {
- return Padding(
- padding: const EdgeInsets.symmetric(vertical: 24.0),
- child: Text(snapshot.hasData ? '${snapshot.data}' : ''),
- );
- },
- )
- ],
- ),
- ),
- floatingActionButton: FloatingActionButton(
- onPressed: _sendMessage,
- tooltip: 'Send message',
- child: Icon(Icons.send),
- ), // This trailing comma makes auto-formatting nicer for build methods.
- );
- }
-
- void _sendMessage() {
- if (_controller.text.isNotEmpty) {
- widget.channel.sink.add(_controller.text);
- }
- }
-
- @override
- void dispose() {
- widget.channel.sink.close();
- super.dispose();
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。