Webapi接收带有方括号的json

时间:2019-03-17 17:15:35

标签: c# angularjs asp.net-web-api kendo-grid

我只想了解, 我花了几天时间尝试解决POST操作无法正常工作的问题(使用Web Api和Angular JS)。 我考虑了一切,尝试,搜索,甚至将代码更改了一千次。之后,我发现POSTJSON格式是这样的情况下有效:

{"Name":"Test","Age":23}

但是如果我使用JSON.stringify(options.models);

POST操作不起作用,其格式如下:

[{"Name":"Test","Age":23}]

我不明白它们之间有什么区别(不管括号[]是什么)

为什么第一个起作用而第二个却不起作用?

有没有办法使第二种格式起作用?

第二个是JSON数组吗?

JSON.stringify(options.models)是否应返回JSON格式?

班级:

 public class EmployeesData
        {
            public EmployeesData() { }
            public EmployeesData(int Id, string Name, int Age, int Phone,string Job, string Department)
            {   this.ID = Id;
                this.Name = Name;
                this.Age = Age;
                this.Phone = Phone;
                this.Job = Job;
                this.Department = Department;}

            [Required]
            public int ID { get; set; }
            public string Name { get; set; }
            public int Age { get; set; }

        }

在WebApi中:

    [HttpPost]
        [ResponseType(typeof(EmployeesData))]

        public async Task<IHttpActionResult> Post([FromBody]EmployeesData employeesData) 
{
            if (!ModelState.IsValid) {
              return BadRequest(ModelState);}

            db.Employees.Add(employeesData);
            await db.SaveChangesAsync();

            return CreatedAtRoute("DefaultApi", new { id = employeesData.ID }, employeesData);
        }

在Angularjs中:

parameterMap: function(options, operation) {
        if (operation !== "read") {
             console.log(kendo.stringify(options));
              console.log(JSON.stringify(options.models)); // Not work because of []
             var R = JSON.stringify(options.models).replace(/]|[[]/g, ''); // work I removed []
                                console.log(operation + R);

                             return (R);
                            }


                        }
                    }

1 个答案:

答案 0 :(得分:2)

上述格式({"Name":"Test","Age":23}[{"Name":"Test","Age":23}])均表示两个不同的合同。

第一个只是一个对象,第二个只是对象集合。

假设您是从角度发送{"Name":"Test","Age":23},那么您的Api控制器方法应该类似于

public void Demo(Test test)
{
  ///code here 
}

测试在哪里

public class Test 
{
   public string Name {get;set;}
   public int Age {get;set;}
}

,如果您发送的是[{“ Name”:“ Test”,“ Age”:23}],则您的控制器应类似于

public void Demo(ICollection<Test> test)
{
  ///code here 
}