我正在使用plnkr來編碼角度應用即時通訊工作,但是當我嘗試在本地編碼時,一切角度似乎停止響應。不能得到角度發起
繼承人我的HTML:我嘗試使用angulars cdn和鏈接實際文件,但沒有任何作品。
<!DOCTYPE html>
<html ng-app='store'>
<head>
<meta charset="utf-8">
<script src="angular.min.js"></script>
</head>
<body>
<div ng-controller="StoreController as store">
<div ng-hide="store.product.soldOut">
<h1> {{store.product.name}}</h1>
<h2> ${{store.product.price}}</h2>
<p> {{store.product.description}}</p>
<input type="text" ng-model="yourName" placeholder="enter name">
hello, {{yourName}}
<button ng-show="store.product.canPurchase"> add to cart</button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>
(function() { // code via app.js
var app = angular.module('store', []);
app.controller('StoreController', function() {
this.product = gem;
});
var gem = {
name: 'Dodecahedron',
price: 2.95,
description: '. . .',
canPurchase: true,
soldOut:true,
};
})();
你在哪裏加載角度js庫? –
您是否檢查過您正在使用的瀏覽器的網絡標籤並驗證JS文件是否正在加載? – CuriousMind
@COOOL它在我的JS文件夾中。 –