Flash 是否总是发布“文件名”?上传文件时的参数?
我尝试过两个 Flash 上传组件,swfupload 和 uploadify,它们似乎都生成带有“文件名”参数的 POST。我的问题是我发布的服务有一组严格指定的允许参数,而文件名不是其中之一。
那么,是否可以从帖子中删除此参数?
I have tried two flash upload components, swfupload and uploadify, and both seem to generate POSTs with a "Filename" parameter. My problem is that the service I'm posting to has a strictly specified set of allowed parameters and Filename is not one of them.
So, is it at all possible to remove this parameter from the post?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速浏览一下文档显示您可以通过设置
upload()
方法的第二个参数来更改uploadDataFieldName
(默认情况下为"Filedata"
)。不过,文档没有提及任何有关Filename
参数的内容,所以我想这是一个否。A quick look at the docs reveals that you can change the
uploadDataFieldName
, which is by default"Filedata"
, by setting the second parameter of theupload()
method. Docs doesn't say anything about theFilename
parameter though, so I guess that's a no.