我是新來的網絡前端編程,並教我自己AngularJS。如何/在哪裏導入我的index.html中的Angular和Bootstrap .js文件?
我創建了一個非常簡單的web應用程序,只是讓用戶登錄和註銷。我在我的Mac OSX本地運行它。
以下是我的index.html
文件。雖然它有效,但我不知道我是否正確。我需要知道如何以及在哪裏導入angular.js文件和bootstrap.js文件。
我的問題如下。我一直無法通過谷歌搜索找出這些東西。我需要有人向我解釋這個東西。
- 我正在從
https://ajax.googleapis.com
導入angular.js
文件。那是對的嗎?或者我應該下載它並將該文件存儲在與index.html
相同的目錄中?爲什麼?我應該何時使用非縮小文件?使用非縮小的有什麼好處? - 我目前沒有導入任何引導文件。我應該導入哪些文件?我是否應該將其作爲URL或作爲來自同一目錄的文件導入:
index.html
- 對於Bootstrap和AngularJS,
- 我應該檢查Angular和Bootstrap文件到我的Github存儲庫嗎?
的index.html:
<html ng-app="app">
<head>
</head>
<body ng-controller="Main as main">
<input type="text" ng-model="main.username" placeholder="username">
<br>
<input type="password" ng-model="main.password" placeholder="password">
<br>
<br>
<button ng-click="main.login()" ng-hide="main.isAuthed()">Login</button>
<button ng-click="main.logout()" ng-show="main.isAuthed()">Logout</button>
<br/> {{main.message}}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.5/angular.min.js"></script>
<script src="app.js"></script>
</body>
</html>