从Angular 4中的文件夹导入所有模型

时间:2017-11-28 13:19:43

标签: angular webstorm

我有一个模型文件夹,里面有大约48个类文件。我希望所有这些类都可以在服务中访问,并且能够创建该类的新实例。

我试过了

    Name: Compile Error
    Message: <console>:1: error: ')' expected but '(' found.
    readme.map(lambda line :len(line.split()) ).reduce( lambda a, b: a                 
    if (a > b) else b )        ^

    <console>:1: error: ';' expected but ')' found.
    readme.map(lambda line :len(line.split()) ).reduce( lambda a, b: a 
    if (a > b) else b )                       ^

但这似乎不起作用。

如果我单独导入这样的课程,它对我有用。

  import * from '../models'

如何从Models文件夹导入所有内容?

1 个答案:

答案 0 :(得分:1)

以下是您问题的官方解决方案:

Barrel