根据存储的路径从文件夹中检索图像来自数据库

时间:2014-03-04 07:34:12

标签: jquery image

我想通过jquery显示列表中的文件夹中的图像,我使用的是mvc 4.0。 image pathe是通过存储过程进行的。

1 个答案:

答案 0 :(得分:0)

// MVC action which returns a list of paths as Json array
public ActionResult GetImages()
{
    IEnumerable<string> imagePaths = GetImagePathsFromStoredProcedure();
    return Json(imagePaths, JsonRequestBehavior.AllowGet);
}

function getImagePathds() {
    $.get("/Home/GetImages", function (data, status) {
        if (status === "success") {
            for (var i = 0, len = data.length; i < len; i++) {
                var imagePath = data[i];
                $("<img alt='' />").attr("src", imagePath).appendTo($("body"));
            }
        }
    });
};