推和拼接在这里不起作用。这是我的模型。我需要这个模型来构建我的表格。splice 删除所有内容, push 不执行任何操作。
export class Parameter {
constructor(
public asset: string,
public wx: IWx[]
) {
}
}
export interface IWx {
[key: string]: IWxValue;
}
export interface IWxValue {
yellowValue: any;
redValue: any;
}
这是我的功能
ajouteWx(pIndex: number, wxIndex: number) {
console.log(pIndex);
console.log(wxIndex);
this._parameters[pIndex].wx = this._parameters[pIndex].wx.push({hello: {yellowValue: 5, redValue: 2}});
this._parameters[pIndex].wx = this._parameters[pIndex].wx.splice(wxIndex, 0, {hello: {yellowValue: 5, redValue: 2}});
}