vue组件中的一个计算属性code,依赖另一个计算属性projectPath(该属性只有数组或者undefined两种值),但是在code的计算函数中调用map,却报
TypeError: this.projectPath.map(...) is not a function
代码:
code () { if (this.projectPath) { console.log(typeof this.projectPath.map) let list = this.projectPath.map(item => item.nodeCode) return list.join('_') } return undefined },
报错:
慕森卡
相关分类