From a4568aea6005a45778afd868f29c922709a2a9a0 Mon Sep 17 00:00:00 2001
From: Kun-Neng 這個 Item
interface
用來建立一個 item
物件模型,讓您的應用程式能理解 item
到底是什麼。
-對於這個待辦列表,一個 item
就代表一個擁有說明與是否已完成等兩個屬性的物件。item
物件擁有說明與是否已完成兩個屬性。
這個 filter
屬性為 union
型態,表示 filter
的值可能為 all
、 active
,或者 done
。
有了 union
型態,若您賦予 filter
屬性錯誤的值, TypeScript 會馬上讓您知道來及早除錯。
-本指引接下來的步驟會展示如何為您的列表加入過濾功能,但您仍可以使用過濾器來顯示這個列表預設的所有項目。
這個 allItems
陣列包含所有待辦項目,其中也包含項目是否已完成的 done
屬性。
例如,第一個項目 eat
擁有值為 true 的 done
屬性。
當 filter
等於 all
時,這個 getter get items()
會由 allItems
陣列中獲取所有的項目。
-否則, get items()
會回傳 done
的項目或是取決於使用者如何過濾的未完成項目。
+否則, get items()
會回傳 done
的項目或是取決於使用者如何篩選的未完成項目。
此 getter 也會建立名為 items
的陣列名稱,這部分您將會在下個章節使用到。
To see the list of items in the browser, replace the contents of app.component.html
with the following HTML:
為了在瀏覽器中看到列表中的項目,置換 app.component.html
內容為以下 HTML :
<div class="main"> <h1>My To Do List</h1> @@ -158,11 +158,11 @@ export class AppComponent { </ul> </div>-
The <li>
contains an *ngFor
, a built-in Angular directive that iterates over the items in the items
array.
-For each item, *ngFor
creates a new <li>
.
-The double curly braces that contain item.description
instructs Angular to populate each <li>
with the text of each item's description.
這個 <li>
包含了一個 Angular 的內建指令 *ngFor
,它可以迭代 items
陣列中的所有項目。
+對於每一個項目, *ngFor
建立了一個新的 <li>
。
+此處包住 item.description
的雙花括號指示 Angular 以每個項目的說明文字來填充每個 <li>
。
In the browser, you should see the list of items as follows:
+在瀏覽器中,您應該可以看到如下的項目列表:
My To Do List @@ -174,11 +174,11 @@ What would you like to do today? * laugh-
A to-do list needs a way to add items.
+一個待辦列表理所當然地需要有添加項目的方法。
-In app.component.ts
, add the following method to the class:
在 app.component.ts
中,加入以下方法至此類別中:
addItem(description) { this.allItems.unshift({ @@ -187,13 +187,13 @@ What would you like to do today? }); }-
The addItem()
method takes an item that the user provides and adds it to the array when the user clicks the Add button.
-The addItem()
method uses the array method unshift()
to add a new item to the beginning of the array and the top of the list.
-You could alternatively use push()
, which would add the new item to the end of the array and the bottom of the list.
這個 addItem()
方法接受一個使用者提供的項目,並在使用者點擊 Add 按鈕時將之加入至陣列中。
+這個 addItem()
方法使用了陣列方法的 unshift()
來添加一個新的項目到陣列的開頭位置與列表的頂端。
+又或者,您也可以使用 push()
來添加一個新的項目到陣列的最後位置與列表的尾端。
To use the addItem()
method, edit the HTML in the AppComponent
template.
為了能使用 addItem()
方法,編輯 AppComponent
範本中的 HTML 。
In app.component.html
, replace the <h2>
with the following:
在 app.component.html
中置換 <h2>
為
<label for="addItemInput">What would you like to do today?</label>
@@ -207,14 +207,14 @@ You could alternatively use push()
, which would add the new item to
<button class="btn-primary" (click)="addItem(newItem.value)">Add</button>
-When the user types a new item in the <input>
and presses Enter, the addItem()
method adds the value to the items
array.
-Pressing the Enter key also resets the value of <input>
to an empty string.
-Alternatively, the user can click the Add button which calls the sameaddItem()
method.
當使用者在 <input>
中輸入一個新的項目名稱並按下 Enter 鍵後, addItem()
方法隨即加入這筆資料至 items
陣列中。
+按下 Enter 鍵的同時也會重設 <input>
的值為空字串。
+或者,使用者也能透過點擊 Add 按鈕來呼叫相同的 addItem()
方法。
By now you should have your basic list of to-dos displaying in your browser. That's great progress! Of course, we have a lot more to do. In the next article we will look at adding some styling to our application.
+目前為止,您應該已經在您的瀏覽器中顯示待辦事項列表。這是很大的進展!當然,我們仍有很多事要做。在下一篇文章,我們將研究在應用程式中加入一些樣式。