谷歌电子表格有点问题。 我想通过ImportJSON函数获取一些json数据,但在获取数据之前我想要的是清除当前工作表的所有内容
function _get(func, id){
var sheet = SpreadsheetApp.getActiveSheet();
sheet.clearContents();
url = "http://example.com";
return ImportJSON(url);
}
当我在单元格中调用它时
=_get("place", "false")
它显示了一个错误
You do not have permission to call clearContents
我错过了什么吗?