在我的 javascript 中:
console.log($.isArray(thisValue)); //true
strDisplay = thisValue.split(" "); //TypeError: thisValue.split is not a function
'thisValue' 是我从 .json 文件中获取的对象的属性。在某些情况下,我的对象的属性可能是一个数组。我查看了原始的 .json 文件,它似乎被正确格式化为一个数组。
关于这里可能发生什么的任何想法?
谢谢。