2

我正在制作一个工具,可以在其中获得报价抛出 javascript,然后将报价发送给自己。报价的制作进展顺利,但在发送电子邮件时,报价数据已损坏。除了数组之外,对象中
的数据Quotation都很好。Options发送 3 个数组项时,Options数组包含 3 个项,但名称为 null 且价格为 0

报价使用jQuery.post.

C# 中的引用对象如下所示:

public class Quotation
{
    public string Email { get; set; }
    public string Product { get; set; }
    public int Amount { get; set; }
    public decimal BasePrice { get; set; }
    public decimal SendPrice { get; set; }
    public Option[] Options { get; set; }
    public decimal Discount { get; set; }
    public decimal SubTotal { get; set; }
    public decimal TotalPrice { get; set; }
}
public class Option
{
    public string Name { get; set; }
    public decimal Price { get; set; }
}

操作方法如下所示:

[HttpPost]
public JsonResult Offerte(Models.Quotation quotation)
{
    //
}

jQuery 看起来像:

$.post(baseUrl + "/api/Offerte/", jsonContent, function (data) {
    alert(data.Message);
});

jsonContent 对象如下所示:

{
    "Options":[
        {
            "Name":"Extra pagina's (16)",
            "Price":40
        },
        {
            "Name":"Papier Keuze",
            "Price":30
        },
        {
            "Name":"Omslag",
            "Price":29.950000000000003
        }
    ],
    "Amount":"5",
    "BasePrice":99.96000000000001,
    "SubTotal":199.91000000000003,
    "SendPrice":0,
    "Discount":19.991,
    "TotalPrice":179.91900000000004,
    "Email":"someone@example.com"
} 

有谁知道为什么数组设置不正确?


编辑
如果我将此调试代码添加到控制器:

using (var writer = System.IO.File.CreateText(Server.MapPath("~/App_Data/debug.txt")))
{
    writer.AutoFlush = true;

    foreach (var key in Request.Form.AllKeys)
    {
        writer.WriteLine(key + ": " + Request.Form[key]);
    }
}

选项[0][名称]:额外页面的 (52)
选项[0][价格]:156
选项[1][名称]:Papier Keuze
选项[1][价格]:68.4
选项[2][名称]:Omslag
选项[2][价格]:41.94
数量:6基本价格
:149.91899999999998 小计
:416.2589999999996
发送价格:0
折扣:45.78848999999999
总价格:370.47051
电子邮件:someone@example.com

这意味着数据确实到达了控制器,但选项仍然没有正确设置。而且我不想要一个简单的修复,然后我自己解析它,我想知道处理它的正确方法,以便 MVC 处理它。

4

1 回答 1

2

如果您想将 JSON 数据发送到 ASP.NET MVC 控制器操作并且您希望模型绑定当前工作(例如,在您的模型上绑定集合),您需要将 contentType 指定为"aplication/json".

因为$.post您无法指定您需要使用的 contentType$.ajax并且您还需要JSON.stringify您的数据:

$.ajax({
    url: baseUrl + "/api/Offerte/",
    type: 'POST',
    data: JSON.stringify(jsonContent),
    contentType: "application/json",
    success: function (data) {
        alert(data.Message);
    }
});
于 2013-01-12T12:50:18.633 回答