1

更新中の古いコードがいくつかあり、クリーナーがそれを取得していません。

以下の変更に成功しました。

document.on.mouseOut.add(onDocumentMouseOut);

document.onMouseOut.listen(onDocumentMouseOut);

しかし、私はこれを翻訳する方法がわかりません:

document.on.mouseOut.remove(onDocumentMouseOut);

remove に相当するストリームは何ですか?

4

1 に答える 1

3

listen()によって返されたStreamSubscriptionオブジェクトへの参照を保持し、そのオブジェクトでcancel()メソッドを呼び出します。

// Add a handler
var subscription = document.onMouseOut.listen((e) => print('oi'));

// Remove the handler
subscription.cancel();
于 2013-03-23T22:55:55.463 に答える