gpt4 book ai didi

google-apps-script - 类型错误 : Cannot find function includes in object (even though the object is an array)

转载 作者:行者123 更新时间:2023-12-04 15:29:52 25 4
gpt4 key购买 nike

为什么应用程序脚本找不到明确为数组的对象中包含的函数。

function test() {
var list = ['a', 'b', 'c'];
Logger.log(list.constructor.name) // Array
if ( list.includes('a') ){
Logger.log('yes');
}
return 'done';
}

错误文本:
TypeError: Cannot find function includes in object a,b,c. (line 134, file "Code")

我是谷歌应用程序脚本的新手,我很生气。我已经在在线 Javascript 控制台中尝试过,一切都很好。

最佳答案

由于有帮助的评论,这是一个替代解决方案。

function test() {
var list = ['a', 'b', 'c'];
Logger.log(list.constructor.name) // Array
if ( list.indexOf('a') > -1 ){
Logger.log('Yes'); // 'Yes'
}
return 'done';
}

关于google-apps-script - 类型错误 : Cannot find function includes in object (even though the object is an array),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51291776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com