SWFUpload“addPostParam”不起作用

发布于 2024-09-01 00:13:45 字数 321 浏览 3 评论 0原文

我一直在测试这个上传脚本,它看起来非常好,但我只是无法让它发布我从输入中提取的值。一切看起来都不错,似乎我写的一切都正确,但它只是停止了 SWF DEBUG: Event: uploadStart : File ID: SWFUpload_0_0, 我的一段代码导致了这些麻烦

.bind('uploadStart', 函数(事件, 文件){ $(this).addPostParam( “标题”、“asd”); })

我将它用作 jquery 插件,也许这就是问题所在?谢谢!

I've been testing this upload script and it looks really good, but i just can't get it to post values, that i have extracted from inputs. Everything is looking good and it seems I'm writing everything correctly but it just stops SWF DEBUG: Event: uploadStart : File ID: SWFUpload_0_0,
there's my piece of code which causes these troubles

.bind('uploadStart', function(event,
file){ $(this).addPostParam(
"title", "asd"); })

I'm using it as jquery plugin, maybe that's the problem? Thanks!

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

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

发布评论

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

评论(1

月下客 2024-09-08 00:13:45

根据项目页面上的文档,您似乎需要使用此代码来获取 SWFUpload 对象的实例以调用 addPostParam

var swfu = $.swfupload.getInstance('.some-selector-for-your-control');

我认为该事件处理程序内部的 this 引用引用了 SWFUpload 对象周围的 jQuery 包装器。

Based on the docs on the project page it looks like you will need to use this code to get an instance of the SWFUpload object to call addPostParam on

var swfu = $.swfupload.getInstance('.some-selector-for-your-control');

I think the this reference inside of that event handler refers to the jQuery wrapper around the SWFUpload object.

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