所以我知道如何从列表中断继承(SPList.BreakRoleInheritance(true)),但是如何以编程方式从它的父级重新加载?
由于
答案 0 :(得分:5)
MSDN link。
SPList.ResetRoleInheritance();
答案 1 :(得分:0)
作为终点,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!');
}
});