我正在尝试将数组复制到对象中的数组中。我收到这个错误
Type 'any[]' is not assignable to type '[]'. Target allows only 0 element(s) but source may have more.
我的对象是
newForm: {formName: string, formId: string, formAttributes:[], formResponses:[]};
我正在复制这个数组-
formAttributeValues=["firstname", "lastname"]
如下:
this.newForm.formAttributes= [...this.formAttributeValues];
这是行不通的。我该如何解决这个问题?
缥缈止盈
相关分类