瀏覽代碼

更新 'README.md'

殷梦龙 3 年之前
父節點
當前提交
aa27211ab1
共有 1 個文件被更改,包括 16 次插入10 次删除
  1. 16 10
      README.md

+ 16 - 10
README.md

@@ -1,14 +1,20 @@
-# fisjsonrpc
+# fis_jsonrpc
 
-A new Flutter package project.
+A JSON-RPC client package project for Flyinsono application.
 
-## Getting Started
+## Usage
 
-This project is a starting point for a Dart
-[package](https://flutter.dev/developing-packages/),
-a library module containing code that can be shared easily across
-multiple Flutter or Dart projects.
+```dart
+// Create a proxy instance
+final rpc = JsonRpcProxy();
 
-For help getting started with Flutter, view our 
-[online documentation](https://flutter.dev/docs), which offers tutorials, 
-samples, guidance on mobile development, and a full API reference.
+// Fetch a api
+try {
+    final String result = await rpc.config.getConfigAsync("service", "section", "settingNode", "defaultValue");
+    print(result);
+} on JsonRpcException catch (e) {
+    print("Fetch fail. code: ${e.code}, msg: ${e.message}");
+} catch (e) {
+    logger.e("Fetch error.", e);
+}
+```