顯示數(shù)據(jù),即屬性綁定機(jī)制把數(shù)據(jù)顯示到用戶界面上。
您可以在UI中的綁定控件的幫助下顯示數(shù)據(jù)。 Angular將通過使用插值和其他綁定屬性(如使用HTML模板中的綁定到Angular組件屬性)來顯示數(shù)據(jù)。
下面的例子描述了在Angular 2:
<!DOCTYPE html> <html> <head> <title>Angular 2 Data Display</title> <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/es6-shim.min.js"></script> <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/system-polyfills.js"></script> <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/angular2-polyfills.js"></script> <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/system.js"></script> <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/typescript.js"></script> <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/Rx.js"></script> <script src="https://atts.w3cschool.cn/attachments/tuploads/angular2/angular2.dev.js"></script> <script> System.config({ transpiler: 'typescript', typescriptOptions: { emitDecoratorMetadata: true }, packages: {'app': {defaultExtension: 'ts'}} }); System.import('/angular2/src/app/datadisplay_main') .then(null, console.error.bind(console)); </script> </head> <body> <my-app>Loading...</my-app> </body> </html>
上述代碼包括以下配置選項(xiàng):
您可以使用 typescript 版本配置 index.html 文件。 在使用 transpiler 選項(xiàng)運(yùn)行應(yīng)用程序之前,SystemJS將TypeScript轉(zhuǎn)換為JavaScript。
如果在運(yùn)行應(yīng)用程序之前沒有翻譯到JavaScript,您可能會(huì)看到瀏覽器中隱藏的編譯器警告和錯(cuò)誤。
當(dāng)設(shè)置了 emitDecoratorMetadata 選項(xiàng)時(shí),TypeScript會(huì)為代碼的每個(gè)類生成元數(shù)據(jù)。 如果不指定此選項(xiàng),將生成大量未使用的元數(shù)據(jù),這會(huì)影響文件大小和對應(yīng)用程序運(yùn)行時(shí)的影響。
Angular 2包含來自 app 文件夾的包,其中文件將具有 .ts 擴(kuò)展名。
接下來,它將從 app 文件夾加載主組件文件。 如果沒有找到主要組件文件,那么它將在控制臺(tái)中顯示錯(cuò)誤。
當(dāng)Angular調(diào)用main.ts中的引導(dǎo)函數(shù)時(shí),它讀取Component元數(shù)據(jù),找到“app"選擇器,定位一個(gè)名為app的元素標(biāo)簽,并在這些標(biāo)簽之間加載應(yīng)用程序。
要運(yùn)行代碼,您需要在 app 文件夾下需要保存以下 TypeScript(.ts)文件。
datadisplay_main.tsimport {bootstrap} from "angular2/platform/browser" import {MyTemplate} from "./datadisplay_app.component" bootstrap(MyTemplate);
現(xiàn)在我們將在TypeScript(.ts)文件中創(chuàng)建一個(gè)組件,如下所示:
datadisplay_app.component.tsimport {Component, View} from "angular2/core"; @Component({ selector: 'my-app' }) @View({ template: ` <h2>Showing data using component properties with interpolation</h2> <h3>Player Name:{{player}}</h3> <h3>He is famous in: {{sport}}</h3><br> <h2>Showing data using constructor or variable initialization</h2> <h3>India capital is: {{capital}}</h3><br> <h2>Showing data using array property with NgFor</h2> <h3>My favorite fruit is: {{myfruit}}</h3> <p>List of Fruits:</p> <ul> <li *ngFor="#fruit of fruits"> {{ fruit }} </li> </ul> ` }) export class MyTemplate { player: 'M.S. Dhoni '; sport:'Cricket'; capital: string; constructor() { this.capital = 'New Delhi'; } fruits = ['Apple', 'Orange', 'Mango', 'Grapes']; myfruit = this.fruits[1]; }
@Component 是一個(gè)裝飾器,它使用配置對象來創(chuàng)建組件。
選擇器創(chuàng)建組件的實(shí)例,其中找到< my-app> 父HTML中的標(biāo)記。
@view 包含一個(gè)模板,用于告訴Angular如何渲染視圖。
export 指定組件在文件外部可用。
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的HTML代碼保存為index.html文件,如同我們在開發(fā)環(huán)境章節(jié)中創(chuàng)建的,并使用上面的包含.ts文件的應(yīng)用程序文件夾。
打開終端窗口并輸入以下命令:
npm start
稍后,瀏覽器選項(xiàng)卡應(yīng)打開并顯示輸出,如下所示。
或者,您可以以其他方式運(yùn)行此文件:
將上面的HTML代碼另存為您的服務(wù)器根文件夾中的 angular2_data_display.html 文件。
將此HTML文件打開為http://localhost/angular2_data_display.html,并顯示如下所示的輸出。
更多建議: