2

它看起来像我的代码:

onItemDeleting: function (args) {
    $.ajax({
        type: "POST",
        url: "/something/asd",
        data: { asd: "cool something" },
        success: function (data) {
            if (data)
                alert("it is something");
            else {
                args.cancel = true;
                alert("something wrong, dude");
            }
        },
        error: function () {
            args.cancel = true;
        },
        dataType: "json"
    });
}

当ajax执行时,删除完成。args.取消=真;不太有效,因为删除方法已经完成。我需要一个事件驱动的解决方案,在 ajax 成功功能之前不执行删除。

4

0 回答 0