使用uploadify上传后获取新文件名

发布于 2024-11-09 03:43:09 字数 97 浏览 2 评论 0原文

我的 uploadify 工作得很好。当后端 php 加载时,文件名将使用新文件名上传,并使用新的唯一 ID 输入到数据库中。

如何将新文件名发送回包含表单的页面?

I have uploadify working nicely. When the back-end php is loaded the filename is uploaded with new filename and which is entered in the database using a new unique id.

How can I send the new filename back to the page that contains the form?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画离情绘悲伤 2024-11-16 03:43:09

就这样:-

'onUploadComplete' : function(file, response, data) {
                                        alert('The File ' + file.name + " has been uploaded with response "+response);
                                                $('#brandImage'+i).val(file.name);
                                                i++;
                            }

您可以使用 response 参数发送文件名并将其用于您的 html :)

There you go :-

'onUploadComplete' : function(file, response, data) {
                                        alert('The File ' + file.name + " has been uploaded with response "+response);
                                                $('#brandImage'+i).val(file.name);
                                                i++;
                            }

you can use response parameter to send filename and use it to your html :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文