具有相同名称的Typescript导入类会导致覆盖

时间:2018-12-05 19:20:16

标签: angular typescript

使用Angular 5,我想导入两个名称和方法相同但路径不同的类。

def assign_account_id
  self.account_id = (user || application || contact).account.id
end

问题是,当我尝试在product1.getInfo()上调用某些内容时,product2.getInfo()的代码已执行。

当我删除product2的导入时,product1.getInfo()正常执行。

我不明白为什么以及解决方案是什么。

此问题与打字稿如何合并具有相同名称的类有关吗? https://www.typescriptlang.org/docs/handbook/declaration-merging.html

有人可以帮我吗?

预先感谢

0 个答案:

没有答案