我有一个角度服务,有一些属性和方法。这是注入不同的控制器,并按预期正常工作。现在问题在于记忆概念。
该类的签名如下所示:
export class CustomService implements ICustomService {
// Having some variables here
customArray: Array<NameSpace.CustomClass>
constructor() // few injectors here
{
// Some code
}
// Some methods Here
}
服务中的一个属性是一个自定义对象Array(使用服务调用填充)。对象中的项目数可能会有所不同取决于某些参数,有时列表可能少于10个项目,有时可能大于100个。
问题:
delete