$(document).ready(function() {
$('#O_File').uploadify({
'uploader'  : '/uploadify/uploadify.swf',
'script'    : 'http://localhost/lib/Action.inc.php?action=Upload&method=AddPictureHandler',
'cancelImg' : '/uploadify/cancel.png',
'folder'    : '/upload',
'auto': false,
'onComplete': function(e, queueId, fileObj, response, data) {
alert(response);
}
});
$('#O_Submit').click(function() {
$('#O_File').uploadifySettings('scriptData', { 'title': $("#O_Title").val(), 'status': $("[name='O_Status']:checked").val() });
$('#O_File').uploadifyUpload();
});
});我的上传handle用了action这种方法实现 但这个uploadify的script地址写上url参数GET不过去 只能method : 'Get'这样传参
但我的action用GET获取了action的类名和函数名 用POST获取了action需要的参数 如果两个都用GET是可以实现 但我觉得很笨的方法 有没办法让uploadify既把url参数传过去又把POST参数传过去