本文介绍了在Typescript对象中添加新属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在对象中添加新属性,但打字稿给出了错误.

I'm trying to add new property in object, but typescript given error.

product: Object = {qty: Number};

foo(){
  this.product.qty = 1;
}

推荐答案

Object 是错误的注释.更改注释:

Object is the wrong annotation. Change your annotation:

product: {qty: number} = {qty: 0};

foo(){
  this.product.qty = 1;
}

这篇关于在Typescript对象中添加新属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 21:00