2

所以我知道如何从列表中中断继承 (SPList.BreakRoleInheritance(true)),但是如何以编程方式从它的父级重新继承?

谢谢

4

2 回答 2

6

MSDN链接

SPList.ResetRoleInheritance();

于 2010-05-20T17:05:34.743 回答
2

作为端点 URL,这里是一个如何通过 JQuery Ajax 函数执行此操作的示例 -

            $.ajax({
            url: "*Site URL here*/_api/web/lists/getByTitle('*your list name here*')/items(*item ID here*)/ResetRoleInheritance()",
            type: "POST",
            headers: {
                "Accept": "application/json;odata=verbose",
                "X-RequestDigest": $("#__REQUESTDIGEST").val(),
            },
            success: function (data) {
                console.log('Permissions successful applied to list item!');
            },
            error: function (data) {
                console.log('Failed!');
            }
        });
于 2014-05-21T05:20:52.360 回答