gpt4 book ai didi

jquery - 使用ajax请求刷新html.renderaction

转载 作者:行者123 更新时间:2023-12-03 23:04:29 25 4
gpt4 key购买 nike

我有一个 div 可以在我的页面上呈现图片库

        <div id="gallery">       
@{
Html.RenderAction("UserGallery");
}

我有这个函数,它在成功上传新图像完成后运行

        function filesUploadOnSuccess(e) {
function updateCart() {
//var tdata = $(frm).serialize();
// or your data in the format that will be used ??
$.ajax({
type: "GET",
//data: tdata,
url : '@Url.Action("UserGallery")',
dataType: "json",
success: function (result) { success(result); }
});
};
}

function success(result) {
$("#gallery").html(result);
}

问题是图库 div 没有更新。

最佳答案

如果您的操作返回 PartialViewResult,则 dateType 应为“html”,而不是“json”:

public ActionResult UserGallery()
{
// do something
return PartialView();
}

 $.ajax({
url : '@Url.Action("UserGallery")',
dataType: "html",
success: function (result) { success(result); }
});

关于jquery - 使用ajax请求刷新html.renderaction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20110557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com