欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ajax POST单个对象或多个对象至API

程序员文章站 2022-05-03 10:53:55
如下图示例: 前端在引用这个2个Action时,POST单个对象,或多个对象作为参数传至服务端的API。 传单外对象: var _obj = {}; _obj.Item_Code = code; $http({ method: 'POST', url: '/Item/Delete/', dataTy ......

如下图示例:

 

 

前端在引用这个2个action时,post单个对象,或多个对象作为参数传至服务端的api。

传单外对象:

 

var _obj = {};
                _obj.item_code = code;

                $http({
                    method: 'post',
                    url: '/item/delete/',
                    datatype: 'json',
                    headers: {
                        'content-type': 'application/json; charset=utf-8'
                    },
                    data: json.stringify(_obj),
                })

 

 

传多个对象:

 

var objects = new array();
            var obj = null;

            angular.foreach($scope.items, function (item) {
                obj = new object();
                if (item.checksingle) {
                    obj.item_code = item.item_code;
                    objects.push(obj);
                }
            });

            $http({
                method: 'post',
                url: '/item/bulkdelete',
                datatype: 'json',
                headers: {
                    'content-type': 'application/json; charset=utf-8'
                },
                data: json.stringify(objects),
            })