我将数据添加到列表中,并在我的控制器中将其作为 JSON 返回:
List<ProductListingModels> prom = new List<ProductListingModels>();
ProductListingModels product = new ProductListingModels();
foreach (var item in ien_item)
{
if ((item.Brand.IsAuthorized == true) && ((HelperClass.ICEContact.PathBrandImages +
item.Brand.Image) != null))
{
product.BrandImage = HelperClass.CheckImageUrlExist(item.Brand.Image);
}
else
{
product.BrandImage = " ";
}
}
prom.Add(product);
return Json(new
{
ja = prom.ToList()
}, JsonRequestBehavior.AllowGet);
我认为这是:
$.getJSON("ProductListing/Index", data, function (product) {
$.each(data, function (index, proValByDep) {
alert(proValByDep.BrandImage);
});
});
我在准备好的萤火虫中对其进行了跟踪,JSON运行良好。问题 :
proValByDep.BrandImage is undefined.
请提供任何解决方案。非常感谢。