2
我正在關注Angular JS的一個教程,但是測試並沒有渲染,因爲它假設在頁面上。它應該呈現爲"Hello you"
,但它仍然顯示爲{{"hello " + "you"}}
。我很新的角度和任何幫助,將不勝感激。Angular js不顯示測試
這裏是我的HTML:
<!DOCTYPE html>
<html ng-app="store">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
</head>
<body>
<script type="text/javascript" src="angular.min.js" ></script>
<script type="text/javascript" src="app.js" > </script>
<p>{{"hello " + "you"}}</p>
</body>
</html>
的app.js文件:
var app = angular.module('store',[]);
和我的文件夾結構:
root:
app.js
angular.min.js
shop.html
你在你的''