您可以通過綁定鍵事件顯示輸入值,并將文本顯示回用戶在屏幕上鍵入的內(nèi)容。
下面的例子描述了Angular 2中用戶輸入的事件對象:
<!DOCTYPE html> <html> <head> <title>Angular 2 User Input Keyup Event</title> <script src="/attachments/w3c/es6-shim.min.js"></script> <script src="/attachments/w3c/system-polyfills.js"></script> <script src="/attachments/w3c/angular2-polyfills.js"></script> <script src="/attachments/w3c/system.js"></script> <script src="/attachments/w3c/typescript.js"></script> <script src="/attachments/w3c/Rx.js"></script> <script src="/attachments/w3c/angular2.dev.js"></script> <script> System.config({ transpiler: 'typescript', typescriptOptions: { emitDecoratorMetadata: true }, packages: {'app': {defaultExtension: 'ts'}} }); System.import('/angular2/src/app/user_input_keyup') .then(null, console.error.bind(console)); </script> </head> <body> <my-key>Loading...</my-key> </body> </html>
上述代碼包括以下配置選項:
您可以使用typescript版本配置index.html文件。在使用transpiler選項運行應(yīng)用程序之前,SystemJS將TypeScript轉(zhuǎn)換為JavaScript。
如果在運行應(yīng)用程序之前沒有翻譯到JavaScript,您可能會看到瀏覽器中隱藏的編譯器警告和錯誤。
當(dāng)設(shè)置emitDecoratorMetadata選項時,TypeScript會為代碼的每個類生成元數(shù)據(jù)。如果不指定此選項,將生成大量未使用的元數(shù)據(jù),這會影響文件大小和對應(yīng)用程序運行時的影響。
Angular 2包括來自app文件夾的包,其中文件將具有.ts擴展名。
接下來它將從應(yīng)用程序文件夾加載主組件文件。如果沒有找到主要組件文件,那么它將在控制臺中顯示錯誤。
當(dāng)Angular調(diào)用main.ts中的引導(dǎo)函數(shù)時,它讀取Component元數(shù)據(jù),找到“app”選擇器,找到一個名為app的元素標(biāo)簽,并在這些標(biāo)簽之間加載應(yīng)用程序。
讓我們創(chuàng)建TypeScript(.ts)文件并將它們保存在app文件夾中。
user_input_keyup.tsimport {bootstrap} from 'angular2/platform/browser'; import {KeyUpComponent} from "./key_up.component"; bootstrap(KeyUpComponent);
現(xiàn)在我們將在TypeScript(.ts)文件中創(chuàng)建一個組件,如下所示:
key_up.component.tsimport {Component} from 'angular2/core'; @Component({ selector: 'my-key', template: `<h2>Key Up Event Example</h2> <input (keyup)="onKey($event)"> <p>{{val}}</p> ` }) export class KeyUpComponent { val=''; onKey(event:KeyboardEvent) { this.val += (event.target).value + ' | '; } }
@Component是一個裝飾器,它使用配置對象來創(chuàng)建組件及其視圖。
選擇器創(chuàng)建組件的實例,在其中在父HTML中找到<my-key>標(biāo)記。
Angular使事件對象在變量$ event中可用,并且它被傳遞給onKey()方法。
onKey()組件方法將從事件對象提取用戶的輸入,并將其添加到用戶數(shù)據(jù)列表。
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的HTML代碼保存為index.html文件,如同我們在環(huán)境章節(jié)中創(chuàng)建的,并使用上面的包含.ts文件的應(yīng)用程序文件夾。
打開終端窗口并輸入以下命令:
npm start
稍后,瀏覽器選項卡應(yīng)打開并顯示輸出,如下所示。
或者你可以用另一種方式運行這個文件:
將上面的HTML代碼作為user_input_event_object.html文件保存在服務(wù)器根文件夾中。
將此HTML文件打開為http://localhost/user_input_event_object.html,并顯示如下所示的輸出。
在上面的輸入框中輸入任何文本。 每次輸入一個字母,它將被添加到上一個文本,并將顯示為分隔的文本。 如果您擊退退格,最后一個字母將被刪除,剩余的字母將顯示為文本。
更多建議: