Angular筆記 - 待續

摘要:Angular筆記 - 待續

引入

<script type="text/javascript" src="http://code.angularjs.org/angular-1.0.1.min.js"></script>

 

ng-app  放在Tag包含的區塊,使得編譯器支援angular

ng-model 輸入資料源用法為    <tag ng-model = "set name">

{{  bind name  ||  [default value] }}  給angular識別的區塊,前面可以綁定資料,後面可以設預設值或不寫

 

ng-controller 綁定要使用JS涵式

 <body ng-controller="function name">  

 

表單送出時

<form ng-submit="addItem()">   執行JS中的凾式

 

迭代器

<li ng-repeat="name1 in todoList"> {{ name1.label }} </li>