我需要帮助在 ASP .NET MVC4 中通过 JSON 创建一组图像。
有可能吗?
我的工作代码如下,我不知道如何集成该功能。
感谢您的任何帮助!
[AcceptVerbs("POST")]
public JsonResult ShowUserImages(string id)
{
var result = List<Bitmap>();
// Create/Get Images and send it with JSON ???
return Json(result, JsonRequestBehavior.AllowGet);
}
HTML
$.post(url, function (data) {
if (data) {
// Can we create an IMAGE tag here using JSON output ???
} else {
alert('Sorry, there is some error.');
}
});