您好我正在尝试使用以下代码使用JQuery Uploadify插件:
$('input#uploadFile_CSV').uploadify({
'uploader' : '/images/uploadify.swf',
'cancelImg' : '/images/cancel.png',
'script' : 'RequestController',
'buttonText': 'Import CSV',
'scriptData': {'command': 'ImportCSVFileCommand',
'workspaceId': $.workspaceGlobalInformation.id},
'method' : 'GET',
'auto': true,
'onComplete' : function(event, ID, fileObj, response, data) {
resetCSVDialogOptions();
showCSVImportOptions(response);
}
});
我一直收到HTTP错误,无法在服务器端读取脚本数据。任何帮助,将不胜感激。感谢。