ngx-order-pipe 项目教程
ngx-order-pipe▼ Angular 5+ orderBy pipe项目地址:https://gitcode.com/gh_mirrors/ng/ngx-order-pipe
1. 项目的目录结构及介绍
ngx-order-pipe/
├── e2e/
│ ├── protractor.conf.js
│ ├── src/
│ │ ├── app.e2e-spec.ts
│ │ └── app.po.ts
│ └── tsconfig.json
├── src/
│ ├── app/
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ └── app.module.ts
│ ├── assets/
│ ├── environments/
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── index.html
│ ├── main.ts
│ ├── styles.css
│ └── test.ts
├── angular.json
├── package.json
├── tsconfig.json
└── tslint.json
目录结构介绍
e2e/
: 端到端测试目录,包含 Protractor 配置文件和测试脚本。src/
: 源代码目录,包含应用程序的主要代码。app/
: 应用程序的主要组件和模块。assets/
: 静态资源文件,如图片等。environments/
: 环境配置文件,用于不同环境的设置。index.html
: 应用程序的入口 HTML 文件。main.ts
: 应用程序的入口 TypeScript 文件。styles.css
: 全局样式文件。test.ts
: 测试配置文件。
angular.json
: Angular 项目的配置文件。package.json
: 项目的依赖和脚本配置文件。tsconfig.json
: TypeScript 编译配置文件。tslint.json
: TSLint 代码风格检查配置文件。
2. 项目的启动文件介绍
main.ts
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
if (environment.production) {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.error(err));
启动文件介绍
main.ts
是 Angular 应用程序的入口文件。- 它首先导入
enableProdMode
和platformBrowserDynamic
模块。 - 根据环境变量
environment.production
决定是否启用生产模式。 - 使用
platformBrowserDynamic().bootstrapModule(AppModule)
启动应用程序。
3. 项目的配置文件介绍
angular.json
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngx-order-pipe": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/ngx-order-pipe",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
ngx-order-pipe▼ Angular 5+ orderBy pipe项目地址:https://gitcode.com/gh_mirrors/ng/ngx-order-pipe