- Learning Angular
- Aristeidis Bampakos Pablo Deeleman
- 219字
- 2021-06-11 18:24:05
Modules
As our applications scale and grow in size, there will be a time when we need to organize our code better and make it sustainable and more reusable. Modules are responsible for this need, so let's take a look at how they work and how we can implement them in our application.
A module works at a file level, where each file is the module itself, and the module name matches the filename without the .ts extension. Each member marked with the export keyword becomes part of the module's public API:
my-service.ts
export class MyService {
getData() {}
}
To use this module and its exported class, we need to import it:
import { MyService } from './my-service';
Notice that the./my-service path is relative to the location of the file that imports the module. If the module exports more than one artifact, we place them inside the curly braces one by one, separated with a comma:
export class MyService {
getData() {}
}
export const PI = 3.14;
import { MyService, PI } from './my-service';
In the preceding example, MyService exports the getData method and the PI variable in one go.
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- 程序設(shè)計(jì)與實(shí)踐(VB.NET)
- Unity Virtual Reality Projects
- Python測(cè)試開(kāi)發(fā)入門與實(shí)踐
- Learning Elixir
- Neo4j Essentials
- Python 3網(wǎng)絡(luò)爬蟲(chóng)實(shí)戰(zhàn)
- Web Application Development with MEAN
- 深入淺出RxJS
- Expert Data Visualization
- 區(qū)塊鏈技術(shù)進(jìn)階與實(shí)戰(zhàn)(第2版)
- INSTANT Yii 1.1 Application Development Starter
- UI設(shè)計(jì)全書(shū)(全彩)
- PHP與MySQL權(quán)威指南
- 你好!Java