如何使用 swfupload 将额外参数(键/值)发送到 asp.net 页面
我们在项目中使用 swfupload 来上传过程,但我们需要添加一些额外的参数并通过 swfupload 将它们发送到 aps.net 页面,
我该怎么做? 是否可以使用 swfupload 将额外参数传递到服务器端页面?
问候。
we are using swfupload for the sake of uploading process in our project but we need add some extra parameter and send them via swfupload to aps.net page
how can I do this?
is it possible at all to passing extra parameters to a server-side page by using swfupload?
regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来您可以使用 addPostParam 方法添加参数,这些参数将为上传的每个文件发送回:
http ://demo.swfupload.org/Documentation/#addPostParam
您还可以查看此相关的SO问题:SWFUpload“addPostParam”不起作用
It looks like you can use the addPostParam method to add parameters which will be sent back for each file uploaded:
http://demo.swfupload.org/Documentation/#addPostParam
You might also check out this related SO question: SWFUpload "addPostParam" doesn't work
这可能会回答你的问题,但不能回答我的问题。您可以调用
swfUploader.addPostParam
为所有正在上传的文件添加参数。如果您像我一样对多个文件进行排队,这对您没有帮助,因为它适用于队列中的所有文件,而不是每个单独的文件。但如果您只上传一个文件,则可能没问题。
This might answer your question, but not mine. You can call
swfUploader.addPostParam
to add parameters to all the files being uploaded.If you're queueing up multiple files like I am, this won't help you because it applies to ALL files in the queue, not each individual file. But if you're only uploading one file, you might be OK.