Your browser doesn't support the features required by impress.js, so you are presented with a simplified version of this presentation.

For the best experience please use the latest Chrome or Safari browser. Firefox 10 (to be released soon) will also handle it.

AngularJS を触ってみた

社内勉強会資料@2014/01/27

土田 拓也

注意

AngularJS

テンプレート(1)

{{ javascript の式 }}

例)

{{ 1 + 2 }}
{{ phone.name }}

テンプレート(2)

<li ng-repeat="phone in phones">
    {{phone.name}}
    <p>{{phone.snippet}}</p>
</li>

テンプレート(3)

※ AngularJS ではなく、TemplateToolkit です!
[% FOREACH phone = phones %]
    <li>
        phone.name
        <p>phone.snippet</p>
    </li>
[% END %]

フィルタ

<dd>{{phone.connectivity.gps | checkmark}}</dd>

コールバック

<img ng-src="{{img}}" ng-click="setImage(img)">

データ

テスト

アプリケーションのアーキテクチャ

情報リソース

おしまい

Use a spacebar or arrow keys to navigate