我已經將文件上載下面的方法:上傳文件並將其保存在臨時文件夾
[HttpPost]
public ActionResult Upload()
{
string directory = @"C:\Temp\";
HttpPostedFileBase file = Request.Files["file"];
if (file != null && file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
file.SaveAs(Path.Combine(directory, fileName));
}
return RedirectToAction("Index");
}
,這裏是我的Ajax調用:
$('#uploadButton').on('click', function()
{
$.ajax({
type: "POST",
dataType: 'json',
url: '@Url.Action("Upload", "Application")',
timeout: 2000,
contentType: 'application/json',
success: function (data) {
//show content
alert('Success!')
}
});
}
)
我需要發送「 Request.files [「file」]「與上傳的文件。
這裏是我的代碼所在的形式:
<form action="/profile/upload" method="post" enctype="multipart/form-data">
<div class="form-group">
<label>File</label>
<input type="file" name="file" id="file" class="form-control" />
<br />
<input type="button" id="uploadButton" value="Upload" />
</div>
</form>
什麼語言你的服務器端代碼寫的?請爲它添加標籤。 – 2016-05-23 10:33:47
您可以更改請求的contentType並嘗試,我沒有看到您是如何在代碼中讀取文件的。 – Nagaraj