我有Asp.Net Mvc4应用程序。在一种 Action 方法中,我有条件过程返回不同的json结果,如下所示:
if(true)
{
return Json(new { count = cartItm.ProductCount, total = cartItm.TotalAmount });
}
else
{
return Json(new
{
thumb = item.ThumbnailPhoto,
productName = item.Name,
itemCount = cartItem.ProductCount,
itemTotal = cartItem.TotalAmount,
productTotal = cart.TotalAmount,
productCount = cart.CartItems.Sum(items=>items.ProductCount)
});
}
在 jquery 单击事件中,我无法定义返回哪个 json。我写 if 条件如下但得到错误的结果。
success: function (data) {
if (data.thumb != null) {//some operations }
else{//some operations }
也许这是一个非常简单的问题,但我是json新手。请帮我。
谢谢您的回复