大家好,我遇到了一个不确定的错误,我不确定该如何解决。我继承了一个项目,以前的开发人员只是在尝试加入字符串数组。运行构建时,在Netlify中出现以下错误。
TypeError:this.props.keywords.join不是函数
这是代码示例
content: this.props.keywords ? this.props.keywords.join(", ") : ""
this.props.keywords有什么问题吗?我只是没看到this.props.keywords.join(“,”):“”?
任何帮助,将不胜感激。
最佳答案
确保this.props.keywords
是一个数组:content: Array.isArray(this.props.keywords) ? this.props.keywords.join(", ") : ""
Array.isArray
的工作方式:
// all following calls return true
Array.isArray([]);
Array.isArray([1]);
Array.isArray(new Array());
Array.isArray(new Array('a', 'b', 'c', 'd'));
Array.isArray(new Array(3));
// Little known fact: Array.prototype itself is an array:
Array.isArray(Array.prototype);
// all following calls return false
Array.isArray();
Array.isArray({});
Array.isArray(null);
Array.isArray(undefined);
Array.isArray(17);
Array.isArray('Array');
Array.isArray(true);
Array.isArray(false);
Array.isArray(new Uint8Array(32));
Array.isArray({ __proto__: Array.prototype });