ASP.NET MVC-异步发送post请求+文件下载

环境:

win10, .NET 6.0


前端向后台传递string型变量

前端:

javascript 复制代码
    function PasteSubmit() {
    	// 获取某个input的值
        var inName = document.getElementById("xx").value;
        // 获取某个元素的属性值
        var inSeq = document.getElementById("xxx").getAttribute("xxx");
        $.ajax({
            type: 'POST',
            url: "/Home/PasteSubmit",
            data: {
                inName: inName,
                inSeq: inSeq,
            },
            success: function (resp) {
            	console.log(resp);
            }
        });
    }

后台:(HomeController)

csharp 复制代码
[HttpPost]
public ActionResult PasteSubmit() {
    // 获取数据
    string name = Request.Form["inName"]; 
    string seq = Request.Form["inSeq"];
    System.Diagnostics.Trace.WriteLine(name);
    System.Diagnostics.Trace.WriteLine(seq);
    // do something
    // 返回的内容
    return Content("test");
}

前台向后台传递多个List

说明:先传递三个List,后台接收后做一些处理,然后回传字符串,将字符串写入文件,生成下载文件,自动下载。

前端:

html 复制代码
@{
// 定义
List<int> cstarts = new List<int>() { 1, 2, 3};
List<int> cends = new List<int>() { 4, 5, 6 };
List<string> cstrs = new List<string>() { "", "sss", "x"};
}

<!-- html内容略 -->

<button id="exportSeqBtn" onclick="exportSeq()" type="button">
    导出序列
</button>

<!-- js -->
<script>
    // 导出序列
    function exportSeq() {
        var starts = @Html.Raw(Json.Encode(cstarts));
        var ends = @Html.Raw(Json.Encode(cends));
        var strs = @Html.Raw(Json.Encode(cstrs));
        $.ajax({
            url: "/Home/ExportSeq",
            method: 'POST',
            data: JSON.stringify({
                vid: @Model.Id,
                cstarts: starts,
                cends: ends,
                cstrs: strs,
            }),
            contentType: 'application/json; charset=utf-8',
            success: function (data) {
                var blob = new Blob([data], { type: 'text/plain' });
                var link = document.createElement('a');
                link.href = window.URL.createObjectURL(blob);
                link.download = 'sequence.fa'; // 下载文件的文件名
                link.click();
            },
            error: function (xhr, status, error) {
                alert('An error occurred while generating the file: ' + error);
            }
        });
    }
</script>

后端:

csharp 复制代码
[HttpPost]
public ActionResult ExportSeq(string vid, List<int> cstarts, List<int> cends, List<string> cstrs) {
	var txtContent = new StringBuilder();
    // do something
    txtContent.AppendLine(string.Join(",", cstarts));
    // 可以打印其他的看看
    return Content(txtContent.ToString(), "text/plain");
}
相关推荐
u***45755 分钟前
SpringBoot Maven 项目 pom 中的 plugin 插件用法整理
spring boot·后端·maven
武子康23 分钟前
大数据-169 Elasticsearch 入门到可用:索引/文档 CRUD 与搜索最小示例
大数据·后端·elasticsearch
q***333740 分钟前
Spring boot启动原理及相关组件
数据库·spring boot·后端
就叫飞六吧1 小时前
Spring MVC 接口命名为什么会有 *.do/actions等身影?
java·spring·mvc
Victor3562 小时前
Redis(154)Redis的数据一致性如何保证?
后端
r***86982 小时前
springboot三层架构详细讲解
spring boot·后端·架构
Victor3562 小时前
Redis(155)Redis的数据持久化如何优化?
后端
许泽宇的技术分享2 小时前
AgentFramework-零基础入门-第08章_部署和监控代理
人工智能·后端·agent框架·agentframework
IT_陈寒2 小时前
Python开发者必看:5个被低估但能提升200%编码效率的冷门库实战
前端·人工智能·后端
g***78912 小时前
鸿蒙NEXT(五):鸿蒙版React Native架构浅析
android·前端·后端