- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是 Angular 2 的新手,遵循 Angular 2 快速入门指南。我想了解 angular app 的目录结构。我正在使用 npm 构建应用程序。我遇到了 Angular 2 中的导入语句
例如
import {NgModule} from '@angular/core';
我发现它是 sytemjs.config.js 文件,映射为
'@angular/core': 'npm:@angular/core/bundles/core.umd.js'
在哪里
'npm:': 'node_modules/'
npm: 是 node_module 文件夹的别名。
但是当我使用我的自定义组件(由用户制作)并像这样导入时
import {AppComponent} from './app.component';
这里的点(.)代表什么,是代表app文件夹映射为
app: 'app',
最佳答案
点与angular无关,它只是表示当前目录。
例如,如果你有两个这样的文件
app
file1.js
file2.js
然后在 app/file1.js
中:
import './file2'
这将告诉您的模块加载器在 app
目录中查找 file2.js
,因为那是 file1.js
的当前目录.
您还可以使用 ..
查看父目录。
这是来自 dot definition 的一个很好的解释, 从 Rahul Tripathi 获得:
On Unix-like operating systems every directory contains, as a minimum, an object represented by a single dot and another represented by two successive dots. The former refers to the directory itself and the latter refers to its parent directory (i.e., the directory that contains it). These items are automatically created in every directory, as can be seen by using the ls command with its -a option (which instructs it to show all of its contents, including hidden items).
关于javascript - Angular 导入语句中点(.)的含义是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40446024/
我需要你的帮助!我在它们之间放置了随机数量的 div。 Item description Item description Item description Item
我有两个 NSDates,时间格式为“h:mm a”(即 6:00 AM 和 8:00 PM)。 我试图找出这两个时间之间的中点是什么时间。 对于上面的示例,早上 6:00 和晚上 8:00 之间的中
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我正在寻找一种有效的算法来检查一个点是否在 3D 中的另一个点附近。 sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2) < radius 这似乎并不太快,实际上我不需要这
我可以让 pandas cut/qcut 函数返回 bin 端点或 bin 中点而不是一串 bin 标签吗? 目前 pd.cut(pd.Series(np.arange(11)), bins = 5)
我是一名优秀的程序员,十分优秀!