# Conflicts: # README.md # public/_includes/_hero-home.jade # public/_includes/_scripts-include.jade # public/docs/dart/latest/_data.json # public/docs/ts/latest/_data.json # public/docs/ts/latest/cookbook/_data.json # public/docs/ts/latest/cookbook/ajs-quick-reference.jade # public/docs/ts/latest/cookbook/aot-compiler.jade # public/docs/ts/latest/cookbook/component-communication.jade # public/docs/ts/latest/cookbook/component-relative-paths.jade # public/docs/ts/latest/cookbook/dependency-injection.jade # public/docs/ts/latest/cookbook/dynamic-form.jade # public/docs/ts/latest/cookbook/form-validation.jade # public/docs/ts/latest/cookbook/i18n.jade # public/docs/ts/latest/cookbook/ngmodule-faq.jade # public/docs/ts/latest/cookbook/set-document-title.jade # public/docs/ts/latest/cookbook/ts-to-js.jade # public/docs/ts/latest/glossary.jade # public/docs/ts/latest/guide/_data.json # public/docs/ts/latest/guide/animations.jade # public/docs/ts/latest/guide/appmodule.jade # public/docs/ts/latest/guide/architecture.jade # public/docs/ts/latest/guide/attribute-directives.jade # public/docs/ts/latest/guide/browser-support.jade # public/docs/ts/latest/guide/change-log.jade # public/docs/ts/latest/guide/component-styles.jade # public/docs/ts/latest/guide/dependency-injection.jade # public/docs/ts/latest/guide/displaying-data.jade # public/docs/ts/latest/guide/forms.jade # public/docs/ts/latest/guide/hierarchical-dependency-injection.jade # public/docs/ts/latest/guide/index.jade # public/docs/ts/latest/guide/lifecycle-hooks.jade # public/docs/ts/latest/guide/ngmodule.jade # public/docs/ts/latest/guide/npm-packages.jade # public/docs/ts/latest/guide/pipes.jade # public/docs/ts/latest/guide/router.jade # public/docs/ts/latest/guide/security.jade # public/docs/ts/latest/guide/server-communication.jade # public/docs/ts/latest/guide/setup-systemjs-anatomy.jade # public/docs/ts/latest/guide/setup.jade # public/docs/ts/latest/guide/structural-directives.jade # public/docs/ts/latest/guide/style-guide.jade # public/docs/ts/latest/guide/template-syntax.jade # public/docs/ts/latest/guide/testing.jade # public/docs/ts/latest/guide/typescript-configuration.jade # public/docs/ts/latest/guide/upgrade.jade # public/docs/ts/latest/guide/user-input.jade # public/docs/ts/latest/guide/webpack.jade # public/docs/ts/latest/index.jade # public/docs/ts/latest/quickstart.jade # public/docs/ts/latest/tutorial/toh-pt1.jade # public/docs/ts/latest/tutorial/toh-pt2.jade # public/docs/ts/latest/tutorial/toh-pt3.jade # public/docs/ts/latest/tutorial/toh-pt4.jade # public/docs/ts/latest/tutorial/toh-pt5.jade # public/docs/ts/latest/tutorial/toh-pt6.jade # public/events.jade # public/presskit.jade # public/resources/js/directives/cheatsheet.js
157 lines
4.2 KiB
JSON
157 lines
4.2 KiB
JSON
{
|
|
"index": {
|
|
"title": "Documentation Overview",
|
|
"navTitle": "Overview",
|
|
"description": "How to read and use this documentation",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"architecture": {
|
|
"title": "Architecture Overview",
|
|
"navTitle": "Architecture",
|
|
"intro": "The basic building blocks of Angular applications",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"displaying-data": {
|
|
"title": "Displaying Data",
|
|
"intro": "Interpolation and other forms of property binding help us show app data in the UI.",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"user-input": {
|
|
"title": "User Input",
|
|
"intro": "User input triggers DOM events. We listen to those events with event bindings that funnel updated values back into our components and models.",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"forms": {
|
|
"title": "Forms",
|
|
"intro": "A form creates a cohesive, effective, and compelling data entry experience. An Angular form coordinates a set of data-bound user controls, tracks changes, validates input, and presents errors.",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"dependency-injection": {
|
|
"title": "Dependency Injection",
|
|
"intro": "Angular's dependency injection system creates and delivers dependent services \"just-in-time\".",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"template-syntax": {
|
|
"title": "Template Syntax",
|
|
"intro": "Learn how to write templates that display data and consume user events with the help of data binding.",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"cheatsheet": {
|
|
"title": "Cheat Sheet",
|
|
"subtitle": "JavaScript",
|
|
"nextable": true,
|
|
"basics": true
|
|
},
|
|
|
|
"style-guide": {
|
|
"title": "Style Guide",
|
|
"intro": "Write Angular with style.",
|
|
"basics": true
|
|
},
|
|
|
|
"ngmodule": {
|
|
"title": "Angular Modules (NgModule)",
|
|
"intro": "Define application modules with @NgModule",
|
|
"hide": true
|
|
},
|
|
|
|
"attribute-directives": {
|
|
"title": "Attribute Directives",
|
|
"intro": "Attribute directives attach behavior to elements."
|
|
},
|
|
|
|
"browser-support": {
|
|
"title": "Browser support",
|
|
"intro": "Browser support and polyfills guide."
|
|
},
|
|
|
|
"component-styles": {
|
|
"title": "Component Styles",
|
|
"intro": "Learn how to apply CSS styles to components."
|
|
},
|
|
|
|
"glossary": {
|
|
"title": "Glossary",
|
|
"intro": "Angular中最重要的词汇的简要定义",
|
|
"basics": true
|
|
},
|
|
|
|
"hierarchical-dependency-injection": {
|
|
"title": "Hierarchical Dependency Injectors",
|
|
"navTitle": "Hierarchical Injectors",
|
|
"intro": "Angular's hierarchical dependency injection system supports nested injectors in parallel with the component tree."
|
|
},
|
|
|
|
"server-communication": {
|
|
"title": "HTTP Client",
|
|
"intro": "Talk to a remote server with an HTTP Client."
|
|
},
|
|
|
|
"lifecycle-hooks": {
|
|
"title": "Lifecycle Hooks",
|
|
"intro": "Angular calls lifecycle hook methods on directives and components as it creates, changes, and destroys them."
|
|
},
|
|
|
|
"npm-packages": {
|
|
"title": "Npm Packages",
|
|
"intro": "Recommended npm packages, and how to specify package dependencies"
|
|
},
|
|
|
|
"pipes": {
|
|
"title": "Pipes",
|
|
"intro": "Pipes transform displayed values within a template."
|
|
},
|
|
|
|
"router": {
|
|
"title": "Routing & Navigation",
|
|
"intro": "Discover the basics of screen navigation with the Angular router."
|
|
},
|
|
|
|
"security": {
|
|
"title": "Security",
|
|
"intro": "Developing for content security in Angular applications"
|
|
},
|
|
|
|
"structural-directives": {
|
|
"title": "Structural Directives",
|
|
"intro": "Angular has a powerful template engine that lets us easily manipulate the DOM structure of our elements."
|
|
},
|
|
|
|
"testing": {
|
|
"title": "Testing",
|
|
"intro": "Techniques and practices for testing an Angular app",
|
|
"hide": true
|
|
},
|
|
|
|
"typescript-configuration": {
|
|
"title": "TypeScript Configuration",
|
|
"intro": "TypeScript configuration for Angular developers",
|
|
"hide": true
|
|
},
|
|
|
|
"upgrade": {
|
|
"title": "Upgrading to Angular",
|
|
"intro": "AngularJS applications can be incrementally upgraded to Angular."
|
|
},
|
|
|
|
"webpack": {
|
|
"title": "Webpack: an introduction",
|
|
"intro": "Create your Angular applications with a Webpack based tooling",
|
|
"hide": true
|
|
}
|
|
}
|