[Dart] Futureサンプル 連鎖編

Futureがまだ直感的に使えない。
パッと出てこない。

下記は、Futureを連鎖させるサンプル。
FutureAの次にFutureBをやりたい時に使う。

HttpRequest.getString("http://hoge.com/")
.then( (str) {
  var  result = str+"hoge";
  return new Future.value(result);
})
.then( (r) {
  print(r);  // http://hoge.com/から取得した文字列にhogeを追加したもの
})

コメント

このブログの人気の投稿

nginxでlocalhostとしてアクセスをサーバーに転送する方法

Android・・・テキスト描画あれこれ, ascent(), descent()等

Android:stateに応じてTextの色を変更する・・・ColorStateList