Uploadify - 上传文件夹好奇心
我使用 JQuery 上传插件 Uploadify
你需要为插件定义上传文件夹:
'folder' : /xyz/zxy,
所以我用 javascript 生成文件夹地址:
installFolder+'/'+activeDirectory.substr(0,activeDirectory.length-1)
如果我使用带有此地址的插件,文件将被上传到我不想要的文件夹。
结果
installFolder+'/'+activeDirectory.substr(0,activeDirectory.length-1)
就是根本
/xyz/zxy
行不通。但如果使用
'folder' : /xyz/zxy
它就有效。
有点令人困惑。有什么提示吗? :)
i work with the JQuery Upload Plugin Uploadify
you need to define the upload folder for the plugin:
'folder' : /xyz/zxy,
So i generate the folderadress with javascript:
installFolder+'/'+activeDirectory.substr(0,activeDirectory.length-1)
If I use this the plugin with this adress the file will be uploaded to a folder I don't want.
The result of
installFolder+'/'+activeDirectory.substr(0,activeDirectory.length-1)
is exactly
/xyz/zxy
it doesn't work. BUT if a use
'folder' : /xyz/zxy
it works.
little bit confusing. any hints? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用 .uploadifySettings 来更改变量的值?
http://www.uploadify.com/documentation/methods/uploadifysettings/
have you tried using .uploadifySettings to change the value of the variable?
http://www.uploadify.com/documentation/methods/uploadifysettings/