Uploadcareウィジェットを使用して、nodejs アプリでプロフィール画像をアップロードしています。Uploadcare ウィジェットでは、ユーザーが 1 つのファイルのアップロードを完了すると、元のウィジェットの状態に戻りたいので、ユーザーは別の画像を選択して前の画像を置き換えることができます。
widget.onUploadComplete(function(info) {
// assign image to image tag
$('#avatar').attr('src', info.cdnUrl);
// reset the widget to user can see the the "choose image" button again.
widget.value();
}
ただし、uploadcare の問題で提案されていますが、widget.value() は何もしないようです。