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.');
}
});