- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我不知道怎么回答这个问题...所以,基本上我是在使用 Angular 2 和 Typescript 编写自己的应用程序。我希望能够像使用 Angular 那样导入我的模块,我们可以在一行中导入多个相关模块。例如,我们可以在 angular2 beta 中这样做:
import { Component, OnInit, Input } from 'angular2/core';
我想对我的应用做类似的事情。例如:
从 'my-project/services' 导入 { UserService, RoleService };
此外,我希望能够对模型、管道、组件等执行相同的操作...
还有一件事,文件夹结构应该是这样的:
src/app/services
src/app/components
src/app/models
src/app/pipes
我尝试做的事情:在路径 src/app 上,我为每个“ bundle ”创建了文件,例如 services.d.ts、models.d.ts、pipes.d.ts...然后我尝试映射到 SystemJS 配置,如下所示:
(function(global) {
// map tells the System loader where to look for things
var map = {
'app': 'src/app', // 'dist',
'rxjs': 'node_modules/rxjs',
'my-project/components': 'src/app/components',
'my-project/services': 'src/app/services',
'my-project/models': 'src/app/models',
'my-project/pipes': 'src/app/pipes',
'@angular': 'node_modules/@angular'
};
// packages tells the System loader how to load when no filename and/or no extension
var packages = {
'app': { format: 'register', main: 'main.js', defaultExtension: 'js' },
'rxjs': { defaultExtension: 'js' },
};
var packageNames = [
'my-project/components',
'my-project/services',
'my-project/models',
'my-project/pipes',
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/http',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
'@angular/router-deprecated',
'@angular/testing',
'@angular/upgrade',
];
// add package entries for angular packages in the form '@angular/common': { main: 'index.js', defaultExtension: 'js' }
packageNames.forEach(function(pkgName) {
packages[pkgName] = { main: 'index.js', defaultExtension: 'js' };
});
var config = {
map: map,
packages: packages
};
System.config(config);
})(this);
问题是 Visual Studio Code 无法识别我的 .ts 文件中的导入。它说找不到模块。
最佳答案
你需要两件事来完成这个。首先,正如其他答案指出的那样,您需要在 index.ts
中创建“桶”( src/app/services
) , src/app/models
和其他此类文件夹。所以你的文件夹结构看起来像这样:
哪里index.ts
文件包含您要在应用程序中导入的内容的导出:
export * from './service1';
export * from './service2';
到目前为止,这将为您提供这样做的可能性:
import { Service1, Service2 } from '../../services';
但是,由于像 ../../
这样的相对路径,这并不理想。 .为了解决这个问题,您需要再做一步:指定 baseUrl
和 paths
tsconfig.json
中的 TypeScript 选项(参见 https://www.typescriptlang.org/docs/handbook/module-resolution.html)。
如果你只想摆脱相对路径,你只需要指定baseUrl
像这样的选项:
tsconfig.json:
{
"compilerOptions": {
...
"baseUrl": "./src"
}
}
完成后,您应该能够像这样导入您的服务:
import { Service1, Service2 } from 'app/services';
但是如果你还需要像my-project/services
这样的导入( my-project
而不是 app
),那么您还需要指定 paths
配置如下:
{
"compilerOptions": {
...
"baseUrl": "./src",
"paths": {
"my-project/*": [
"app/*"
]
}
}
}
使用此配置,以下应该可以工作:
import { Service1, Service2 } from 'my-project/services';
关于Angular 2 bundle ,如导入/导入多个模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37287048/
这个问题已经有答案了: Difference between $Bundle install and $Bundle update (2 个回答) 已关闭 9 年前。 bundle 之间有什么区别,
我正在尝试加载 Nib ,但不断收到以下错误: -[NSViewController initWithCoder:] could not instantiate an NSViewController
bundle有什么区别& bundler命令? bundle有什么区别& bundle install ? 如果没有区别,为什么有多个命令做同样的事情? 最佳答案 可执行文件 bundle & bun
我们有托管在应用程序中的单元测试。要加载测试资源,我们使用:Bundle(for: TestClass.self).path(forResource: "some-file", ofType: "js
我刚刚克隆了一个新的 repo 并尝试运行 bundle install但出现以下错误 Fetching gem metadata from https://abcderepos.net/api/ge
我添加了一个共享框架来在应用程序和 watch 扩展之间共享代码。后来我删除了共享框架,因为它会导致很多问题。我可以 build 并在 iphone 上运行我的应用程序并观看。然而,当我提交到应用商店
这个问题有点类似于 this one ,但不完全是。我有一个 C# 游戏引擎,我正在与一些想要使用我的引擎的人一起工作。最初我设计了引擎,以便所有 Assets 都是外部的——非程序员可以创建艺术、音
我正在尝试使用 OSGi 实现客户端-服务器模型。服务器应用程序是在计算机中运行的 OSGi 框架,客户端应用程序远程连接到其控制台并通过 Java 套接字发送命令并接收正确的响应。每个客户端应用程序
我目前正在将我的 Angular 2 应用程序与 WebPack bundle 在一起。我们仍在快速循环,因此我们不想在构建和应用程序加载过程中增加延迟,而是希望包括很少更改的 Angular 2 U
基本上,我有一个捆绑软件,经常在其他 View 中使用,加上其他js文件,因此我可以在保留其顺序的同时将这些文件添加到现有捆绑软件中吗? 最佳答案 我到处都在查找它,但找不到将两个捆绑软件合并在一起的
我有一个大约 12GB 的巨大 mercurial 存储库。我需要在另一台机器上克隆它,但是从网络中提取它需要花费很多时间。当我尝试将所有变更集 bundle 到一个 bundle 文件中时,文件的大
我可以使用 Sonata User Bundle 将 FOS 包集成到 sonata Admin 包中。我的登录功能正常。现在我想添加 FOSUserBundle 中的更改密码等功能到 sonata
如果我检查使用 angular-cli 创建的 angular 2 项目的 index.html 文件,我可以看到该页面仅包含 dist 文件夹中的 3 个文件: inline.bundle.js v
我从程序包管理器http://localhost:4502/crx/packmgr/index.jsp中从正在运行的AEM实例下载了一个zip文件。提取后的zip文件包含jcr_root和META-I
已经提出了有关捆绑名称和捆绑显示名称的类似问题,例如: What's the difference between "bundle display name" and "bundle name" in
我正在尝试在 iTunes 上上传我的应用程序。为此,我创建了一个应用程序 ID 并保留了一个包标识符。在我的项目中,我更改了 info.plist 文件中的包标识符。但是,当我尝试在 itunes
我想从 OSGI 包启动 OSGI 包。正如您所看到的,此代码通过从目录部署它来启动 bundle : private void installStartBundle(BundleContext bc
所以这真的让我头疼,我终于放弃了,在这里发表了问题。我正在尝试更新iTune商店中的一个客户端应用程序,并且在上传到App Store时遇到以下错误。 因此,我已经尝试通过两次使用包sid id创建新
我在 typescript 中使用 aurelia,我想避免使用像这样的相对导入路径: import { DialogBox } from '../../resources/elements/dial
有什么区别 ResourceBundle.getBundle("Bundle") 还有这个 ResourceBundle.getBundle("/Bundle") 最佳答案 来自the Java do
我是一名优秀的程序员,十分优秀!