Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用箭头函数时:
[cbCenter, edtTitle].forEach(widget => widget.validate());
显示以下警告
代码运行正常,所以我只需要知道如何启用 esnext 选项来消除警告?
语法很尴尬,您应该在脚本顶部添加以下内容:
/* jshint esnext:true */
请注意,正如另一个答案所说,这不适用于服务器端脚本,因为 Apps Script 不支持 es6。但它适用于客户端脚本。