我想在我的控制器中的GetFile方法中生成一个文件,并将其作为链接返回 我的看法。用户应该能够单击该链接并下载该文件。如何在我的Jquery函数(数据)部分中编写它。
@model PopulateDropDownList.Models.Populate
@using PopulateDropDownList.Models
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<script src="../../Scripts/jquery-1.4.4.js" type="text/javascript"></script>
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new {rnctype = "multipart/form-data" }))
{
<p>
@Html.DropDownList("mylist", Helper.GetDescription(),"--select here--")
<input id="Button1" type="button" value="button" />
</p>
}
<script language="javascript" type="text/javascript">
$(document).ready(function () {
$("#Button1").click(function () {
var SelCat = $("#mylist").val();
if (SelCat != 0) {
var url = '@Url.Action("GetFile", "Home")';
$.post(url, { categoryId: SelCat },
function (data) {
});
}
else {
alert("You need to select an city");
}
});
});
</script>
public FileStreamResult GetFile()
{
string name = "me.txt";
FileInfo info = new FileInfo(name);
if (!info.Exists)
{
using (StreamWriter writer = info.CreateText())
{
writer.WriteLine("Hello, I am a new text file");
}
}
return File(info.OpenRead(), "text/plain");
}
答案 0 :(得分:0)
您可以将MVC操作切换为ActionResult
而不是FileStreamResult
。
然后只需使用常规链接指向它,不需要jquery帖子:
<a href="/controller/GetFile"target="_blank">