本文主要是介绍前端如何判空,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这样判空就会报错
loadNode(node, resolve)console.log("node")console.log(node)if (node.data !== null) {this.get(ctx + '/publicity/publicityType/typeTreeData?id=' + node.data.id).then((res) => {resolve(res)})}},
需要这样写,用typeof来做类型判断
console.log("node")console.log(node)if (typeof node.data !== 'undefined') {this.get(ctx + '/publicity/publicityType/typeTreeData?id='+node.data.id).then((res) => {resolve(res)})}else {this.get(ctx + '/publicity/publicityType/typeTreeData?id='+this.typeId).then((res) => {resolve(res)})}
这篇关于前端如何判空的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!