Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

Vue+TypeScript时,undefined和null有啥区别

这种情况下,tip就能有值

hierarchy: Hierarchy | null = null;

  get tip() {
    return this.hierarchy ? `层级分类定义:${this.hierarchy.name}[${this.hierarchy.code}]` : '';
  }

 open() {
    this.hierarchy = {code: '11', name: '111'}
 }

这种情况下,tip就能就永远没有值

hierarchy: Hierarchy | undefined = undefined;

  get tip() {
    return this.hierarchy ? `层级分类定义:${this.hierarchy.name}[${this.hierarchy.code}]` : '';
  }
  
   open() {
    this.hierarchy = {code: '11', name: '111'}
 }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

代码贴的一样,错了吧。
猜测你是用了 vue-class-component
https://class-component.vuejs...
看这一段:

Note that if the initial value is undefined, the class property will not be reactive which means the changes for the properties will not be detected:

如果未定义初始值,响应式系统将不会生效


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...