MVC3 プログラムで SWFUpload を使用しています。IE と Chrome では問題なく動作しますが、FireFox ではファイルをアップロードできません。アップロード アクションにも入りません。私のプログラムでは、ユーザーが最初にログインする必要があります。また、ユーザーがログインする必要のないテスト プログラムで SWFUpload を使用すると、うまく動作します。誰でもこの問題を解決する方法を教えてもらえますか? これは私のコードです:
Js:
swfupload1 = new SWFUpload({
upload_url: '@Url.Action("Upload")',
post_params: { "name": "value" },
file_size_limit: "200000000",
file_types: "*.jpg;*.gif;*.png;*.jpeg",
file_types_description: "",
file_upload_limit: "1",
file_queue_limit: "1",
file_queue_error_handler: fileQueueError,
file_dialog_complete_handler: fileDialogComplete,
file_queued_handler: fileQueued,
upload_progress_handler: uploadProgress,
upload_error_handler: uploadError,
upload_success_handler: uploadSuccess,
upload_complete_handler: uploadComplete,
upload_start_handler: uploadStart,
button_image_url:'@Url.Content("~/Swfupload/images/XPButtonNoText2_160x22.png")',
button_placeholder_id: "spanButtonPlaceholder1",
button_width: 42,
button_height: 22,
button_text: '<span class="buttonCss">选择</span>',
button_text_style: ".buttonCss { font-family: Helvetica, Arial, sans-serif; font-size: 14pt; } .buttonSmall { font-size: 10pt; }",
button_text_top_padding: 1,
button_text_left_padding: 5,
button_cursor: SWFUpload.CURSOR.HAND,
button_action: SWFUpload.BUTTON_ACTION.SELECT_FILE,
flash_url: '@Url.Content("~/Swfupload/swfupload.swf")',
custom_settings: { upload_target: "divFileProgressContainer1" },
debug: false
});
コントローラ:
[HttpPost]
public ActionResult Upload(HttpPostedFileBase filedata)
{
if (null != filedata)
{
filedata.SaveAs(Server.MapPath("/File/Coverurl"+fileData.FileName));
}
return Json("");
}