javascript – 当我保护工作表时,密码未被应用
作者:互联网
我使用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));
}
});
密码未被应用的问题是什么?
解决方法:
你实际上正在做与你想要的相反的事情.设置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));
}
});
顺便说一句,这条线完全没用,无论如何都行不通.锁定属性为只读:
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));
}
});
这个样本在几个级别上都是错误的.我会确保样本尽快更新.对此造成的混乱感到抱歉.
标签:javascript,office-js 来源: https://codeday.me/bug/20190710/1425788.html