码迷,mamicode.com
首页 > Web开发 > 详细

.NetCore mvc Ajax Post数据到后端

时间:2018-08-07 15:11:39      阅读:2739      评论:0      收藏:0      [点我收藏+]

标签:json   col   func   ajax   .net   name   fun   var   code   

在前端页面中,如果没有表单,想把复杂对象提交到后端,可使用以下方法

后端Controller中定义以下方法:

[HttpPost]
        public int AddSolution([FromBody]Solution col)
        {
            if (col != null)
            {
                //你的操作
            }
            else
            {
                return -1;
            }
            return 1;
        }

注意一定要有 [FromBody]

 

前端JS方法

function fn_addSolution() { 
        var data = {
                TableName: "UserTable",
                Name:"lisi",
                DisplayName: "李斯",
        };
        
        $.ajax({
            type: "POST",
            url: "/Solution/AddSolution",
            data: JSON.stringify(data),
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (result) {
                if (result)
            }
        });
    }

注意其中的 contentType和dataType

.NetCore mvc Ajax Post数据到后端

标签:json   col   func   ajax   .net   name   fun   var   code   

原文地址:https://www.cnblogs.com/zhaoyongkai/p/9436693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!