3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AngularJS勉強メモ その1(環境構築)

Last updated at Posted at 2015-10-18

これはAngularJSを勉強した内容をまとめたものです。

今回したこと

AngularJSをダウンロードして簡単に動きをみる

環境

  • Ubuntu 14.04 (VirtualBox)
  • AngularJS 1.4.7

AngularJSをダウンロードして簡単に動きをみる

1. https://angularjs.org/からangular.min.jsをダウンロード
2. 以下のようなhtmlを用意

<!DOCTYPE html>
<html ng-app>
  <head>
    <title>Hello World</title>
    <script src="angular.min.js"></script>
  </head>

  <body>
    {{"Hello" + "World"}}<br/>
    1+1 = {{ 1 + 1 }}
  </body>
</html>

3. 同じディレクトリにダウンロードしたangular.min.jsを配置
4. ブラウザで作成したhtmlを見てみる
hello_world.jpg

おお!できた!!{{}}で囲った場所がちゃんと処理されて表示されている!
htmlタグに書いたng-appがポイントらしい。
このあたりは今後の勉強でわかるはず。。

ということで今回はここまで。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?