我正在使用Uploadcare小部件在 nodejs 应用程序中上传个人资料图片。在 Uploadcare 小部件中,一旦用户完成上传单个文件,我想返回到原始小部件状态,以便用户可以选择另一个图像来替换前一个图像。
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();
}
然而,widget.value() 似乎没有做任何事情,尽管在 uploadcare问题上建议这样做