gpt4 book ai didi

asp.net-mvc - Web Api 调用返回 404 错误,GUID 作为参数传递

转载 作者:行者123 更新时间:2023-12-03 22:59:31 25 4
gpt4 key购买 nike

我的 ajax 调用在调用 web.api 方法时遇到问题。如果我从 api 和 js 中删除 Guid orderId,则调用会将其发送到 Controller ,但披萨对象是空的。如果我在 URL 中传递 Guid,它也会到达 Controller ,但不会到达披萨。请解释为什么这不起作用或帮助我使它起作用。

JS:

var savePizza = function (orderId, pizza) {
var dataCall = $.ajax(config.savePizzaUrl, {
data: ko.toJSON({ orderId: orderId, pizza: pizza }),
type: "post",
contentType: "application/json"
});

return Q.when(dataCall);
};

网络 API:

    [HttpPost]
public RequestReturn<Guid> SavePizza(Guid orderId, Pizza pizza)
{
return PizzaRequests.SavePizza(orderId, pizza);
}

JS 对象:

var pizza = function (data) {
this.Id = data.Id;
this.Size = new size(data.Size);
this.SizeId = data.SizeId;
this.Toppings = $.map(data.Toppings, function(item) {return new topping(item);});
};
var topping = function (data) {
this.Id = data.Id;
this.Name = data.Name;
this.Price = data.Price;
};
var size = function (data) {
this.Id = data.Id;
this.Name = data.Name;
this.Price = data.Price;
};

C# 对象:

public class Pizza
{
public Guid Id { get; set; }
public Guid SizeId { get; set; }
public Size Size { get; set; }
public IEnumerable<Topping> Toppings { get; set; }
}
public class Size
{
public Guid Id { get; set; }
public string Name { get; set; }
public double Price { get; set; }
}
public class Topping
{
public Guid Id { get; set; }
public string Name { get; set; }
public double Price { get; set; }
}

JSON Fiddler 捕获后:

enter image description here enter image description here

最佳答案

默认情况下,ASP.NET Web API 将请求正文绑定(bind)到复杂类型(在您的情况下为披萨)。 Web API 将正文完整绑定(bind)到一个参数。 GUID 等简单类型是从 URI 路径和查询字符串绑定(bind)的。因此,通过在 URI 中传递 GUID 并仅发布与披萨对象对应的 JSON(仅披萨而不是订单 ID 等其他任何内容),您就可以实现此功能。

关于asp.net-mvc - Web Api 调用返回 404 错误,GUID 作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18476561/

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