我想使用 io 示例(https://github.com/dart-lang/rpc)尝试 Dart 的 rpc 包
我在使用 1.9.1 sdk 的 64 位版本的 Dart 编辑器(不能更新超过稳定版本)
这是我的 pubspec.yaml :
name: myDartRestServer
version: 0.0.1
description: A minimal command-line application.
#author: <your name> <email@example.com>
#homepage: https://www.example.com
environment:
sdk: '1.9.1'
dependencies:
rpc: any
dev_dependencies:
unittest: any
但是当我尝试复制示例以启动我的服务器时:
final ApiServer _apiServer = new ApiServer('/api/', prettyPrint: true);
void start() {
_apiServer.addApi(new Synchro());
HttpServer server = await HttpServer.bind(InternetAddress.ANY_IP_V4, 9090);
server.listen(_apiServer.httpRequestHandler);
_apiServer.enableDiscoveryApi("http://localhost:9090");
}
我的 EDI(SDK) 不知道 await 关键字。(我在我的库文件中导入了 dart:io dart:async 和 rpc 包)
我错过了什么?预先感谢您的回复。祝你今天过得愉快。