meteor-slingshotを使用してファイルをアップロードしています。プログレスバーのパーセンテージが変化したときに設定したい。
これが私が今やっている方法です。
{{percentage}}
percentage: number;
uploadButton() {
// First start to upload
// ...
// Then track the progress
setInterval(() => {
this.percentage = uploader.progress(); // The API uploader.progress() returns a number
}, 1000);
}
を使用せずに番号の変更を追跡するために RxJS などを使用するスマートな方法はありsetInterval
ますか?
ありがとう