您可以添加自定义按钮来扩展上传器的功能。 我需要的是能够允许用户在上传图像后将文本输入到表单中。
有关于此的文件吗? 目标是添加一个额外的按钮,可以获取图像UUID并打开文本区域以输入文本以回发到服务器。 谢谢。
答案 0 :(得分:1)
我需要的是允许用户在上传图片后在表单中输入文字的功能。
客户了解图像是否成功的唯一方法" upload是指服务器返回正确的响应并调用onComplete
事件。在此处理程序内部,您可以运行任何您想要的任意代码,包括获取成功上载项目的UUID:
// ...
onComplete: function(id, name, json, xhr) {
var uuid = this.getUuid(id);
// or if using jQuery
// var uuid = $(this).fineUploader('getUuid', id);
if (json.success === true) {
// then you will render your text area, and then intercept its form submit to
// send the POST request data to the server. Left as an exercise to the user.
}
}
// ...