gpt4 book ai didi

angular - 如何让我的 Angular 2 应用程序处理桶文件导入?

转载 作者:太空狗 更新时间:2023-10-29 17:13:10 25 4
gpt4 key购买 nike

我正在尝试遵循 Angular 2 样式指南 04-10 创建和导入桶,在此处找到:https://angular.io/docs/ts/latest/guide/style-guide.html

当我运行我的应用程序时,angular 现在会尝试加载一个不存在的文件:“my-component-name-here.js”。

为了说明问题,我修改了 Angular 2 示例应用程序以使用桶文件,它现在也抛出 404 错误。

我将 heroes 组件文件放入它们自己的名为 heroes 的文件夹中。我创建了一个名为 heroes/index.ts 的新文件:

export * from './heroes/heroes.component';

我将 app.component.ts 中的导入语句更改为:

import { HeroesComponent } from './heroes';

当应用程序尝试加载时,在开发者控制台中出现以下错误:

Error: Error: XHR error (404 Not Found) loading app/heroes.ts(…)

plunkr 可以在这里找到: http://plnkr.co/edit/YXY0PwuFot1g1s6qTqDt?p=preview

我怀疑这与 SystemJS 有关,但我对它的了解还不足以修复它。谁能帮忙?提前致谢!

最佳答案

你必须做一些改变才能使桶工作,

index.ts

   export * from './heroes.component';

systemjs.config.js

map 添加一个条目,如下所示,

  'heroes':                     'app/heroes', 

然后在 packages 中创建如下条目,

  'heroes': { main: 'index.ts',  defaultExtension: 'ts' },

这将解决 barrel 问题,但不能完全解决您的所有问题,因为您在 heroes 组件中也引用了 hero-detail,因此您必须工作在那些。

关于angular - 如何让我的 Angular 2 应用程序处理桶文件导入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37260119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com