我如何可以加載成功JSON響應之後的圖像?加載圖像響應
jQuery的
$.post('@Url.Action("Upload", "Camera")', {
type: 'data',
image: canvas.toDataURL("image/png")
}, function (result) {
if(result.success) {
alert('The image was successfully sent to the server for processing');
var $image = $("<img src='~/temp/" + @ViewData["CaputredImage"] + "'/>");
$image.live("load", function() {
$("#imageContainer").append(this);
});
}
});
圖像容器
<div id="imageContainer"></div>
不工作!事情是我不認爲'負載'會在json響應後在這裏工作 – 2013-03-10 06:26:02
@JackManson:當然會。一個與另一個無關。必須有其他事情正在進行。 – 2013-03-10 14:11:49