所以我知道如何从列表中中断继承 (SPList.BreakRoleInheritance(true)),但是如何以编程方式从它的父级重新继承?
谢谢
所以我知道如何从列表中中断继承 (SPList.BreakRoleInheritance(true)),但是如何以编程方式从它的父级重新继承?
谢谢
MSDN链接。
SPList.ResetRoleInheritance();
作为端点 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!');
}
});