0

我尝试对 ASP.NET MVC 4 中的服务器端方法进行简单调用。我通过对方法进行 jQuery 调用来做到这一点。该方法被调用并且属性正确,但是该方法的响应不正确。我尝试使用 JSON.NET 序列化一个 .NET 对象。

我可以看到我得到以下响应(使用 FireBug):

"{\"VisitorId\":\"11a0606b-5336-4fa7-b50f-3edf97d8301b\",\"PhoneToTransfer\":\"61793650\",\"PhoneToNotify\":\"\",\"EmailToNotify\":\"mcoroklo@gmail.com\",\"EmailToTransfer\":\"\",\"OrderState\":\"PaymentPending\",\"DestinationAddress\":\"1Ccypfi3rnXosUgY6p1sQVXFyddFvwLFEJ\",\"TransactionHash\":\"\",\"Value\":12.0,\"Confirmations\":-1,\"TransactionDate\":\"2013-01-09T22:36:33.7991116+01:00\"}"

这不会解析为正确的 JSON,我不知道为什么。此外,Firebug 中的“JSON”选项卡显示“没有要显示此对象的属性”。

我很确定我的内容类型和数据类型在通话中是正确的。

这是我制作 JSON 的代码 - 使用 JSON.NET 库:

[HttpPost]
public JsonResult StartPurchase(string phoneReceiver, string emailNotify, string value)
{
    if (ModelState.IsValid)
    {
        BlockchainPayments block = new BlockchainPayments();
        var address = block.GetAddress(BtcContext.PurchaseSession);

        decimal val = 0;
        decimal.TryParse(value, out val);

        var ps = new PurchaseService();
        var purchase = ps.StartPurchase(BtcContext.PurchaseSession, phoneReceiver, emailNotify, address.destination, val);
        return Json(JsonConvert.SerializeObject(purchase));
    }
    return Json("Error");
}

这是 jQuery 调用:

$.ajax({
    type: "POST",
    url: url,
    data: dataToSend,
    dataType: "json",
    contentType: "application/json; charset=utf-8",
    success: function (data) {
        alert('Awesome destination succes');
    },
    error: function (date) {
        alert('An occurred while purchasing. Please try again later');
    }
});

知道为什么它没有返回有效的 JSON 吗?以及如何解决它的任何想法?

4

2 回答 2

3

看起来您正在对其进行双重编码,只需使用一种转换方法,例如return Json(purchase);

于 2013-01-09T21:52:35.597 回答
2

return Json我相信已经序列化了一个对象。看起来你正在获得双重序列化。

于 2013-01-09T21:52:06.790 回答