gpt4 book ai didi

c# - 从 AngularJS 和 ASP.net MVC 传递数据 $http.post 获取 null

转载 作者:太空狗 更新时间:2023-10-29 20:04:34 25 4
gpt4 key购买 nike

我正在尝试将数据从 AngularJS 传递到 ASP.net MVC,但始终为空。这是我的代码(只发布基本的、按钮、 Controller 和 C#:

HTML:

<a class="btn btn-grey btn-lg btn-block" ng-click="AddCar()">Save</a>

Controller

$scope.AddCar = function () {
$http.post("Cars/AddCar", JSON.stringify($scope.new.JsonCar)).success(function (data) {
Alert(ok)
})

c#

public string AddCar(string JsonCar) 
{
try
....
}

在 JSON.stringify($scope.new.JsonCar) 我得到这个:

"{"Name":"FIAT 500","Description":"New car","MaxUserCapacity":5,"PhotoPath":"none"}"

我做错了什么?

最佳答案

将您的对象直接作为对象传递,而不是将其字符串化。由于它现在正在传递,因此它是一个字符串,而不是可以正确反序列化的对象。

$http.post("Cars/AddCar", $scope.new.JsonCar).success(function (data) {
Alert(ok)
})

创建一个与您的负载相匹配的 Car 对象。序列化程序将为您处理您的 JSON 对象。

public Car AddCar(Car car) 
{
try
....
}

我的假设是,在某些时候,您无论如何都会将字符串反序列化为一个对象。这只是为您节省了额外的步骤。

关于c# - 从 AngularJS 和 ASP.net MVC 传递数据 $http.post 获取 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27465390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com