gpt4 book ai didi

php - Uploadify:动态FormData不改变

转载 作者:可可西里 更新时间:2023-11-01 12:23:56 26 4
gpt4 key购买 nike

基于当前的 uploadify 文档,它使用 formData(奇怪的是所有谷歌搜索结果,ppl 都使用 scriptData)。问题是我尝试使用设置和 onUploadStart 事件手动更改 formData uploadify docs说。但是,该文件夹在到达服务器时始终保持不变 (/webroot/newsletter)。它应该是 (/webroot/newsletter/update),我正在以这种方式进行测试,因为该值稍后应该是动态的。知道这里出了什么问题吗? uploadify forum中还有一个问题也是,但到目前为止还没有答案

$('#file_upload').uploadify({
'method':'POST',
'formData' : { 'currentDirPath' : '/webroot/newsletter' } ,
'swf' : '/js/uploadify-v3.1/uploadify.swf',
'uploader' : '/js/uploadify-v3.1/uploadify.php',
'checkExisting' : '/js/uploadify-v3.1/check-exists.php',
'onUploadStart' : function(file) {
$("#file_upload").uploadify('settings', 'currentDirPath', "/webroot/newsletter/update");
} ,
'onUploadSuccess' : function(file, data, response) {
alert('The file was saved to: ' + data);
}
// Put your options here
});

最佳答案

文档有误。应该是:

 $("#file_upload").uploadify('settings','formData' ,{'currentDirPath': /webroot/newsletter/update});

以防万一有人偶然发现了这个问题。干杯。

关于php - Uploadify:动态FormData不改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10781368/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com