我正在使用Excel API保护Excel工作表。我尝试按照他们在文档中提到的那样做,但Sheet不受密码保护。它只是在没有密码的情况下得到保护。
我正在尝试的代码如下:
Excel.run(function (ctx) {
var sheet = ctx.workbook.worksheets.getItem("Sheet1");
var range = sheet.getRange("A1:B3").format.protection.locked = false;
sheet.protection.protect({
allowInsertRows: true
}, "mypassword");
return ctx.sync();
}).catch(function (error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
没有应用密码会出现什么问题?
答案 0 :(得分:0)
你实际上正在做与你想要的相反的事情。当您设置allowInsertRows: true
时,取消保护行插入。由于您没有保护任何内容,因此您提供的密码将被忽略。
您需要设置allowInsertRows: false
以禁用插入行的功能。一旦发生这种情况,用户将需要提供密码以取消保护工作表:
Excel.run(function (ctx) {
var sheet = ctx.workbook.worksheets.getItem("Sheet1");
sheet.protection.protect({
allowInsertRows: false
}, "mypassword");
return ctx.sync();
}).catch(function (error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
顺便说一下,这条线完全没用,无论如何都行不通。 locked
属性为只读:
var range = sheet.getRange("A1:B3").format.protection.locked = false;
更新:我刚注意到documentation包含此示例(显然是您从中获取代码的地方):
Excel.run(function (ctx) {
var sheet = ctx.workbook.worksheets.getItem("Sheet1");
var range = sheet.getRange("A1:B3").format.protection.locked = false;
sheet.protection.protect({
allowInsertRows: true
});
return ctx.sync();
}).catch(function (error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
这个示例在几个级别上都是错误的。我确保尽快更新样本。我很抱歉这导致了混乱。