我想显示一个倒数计时器。我一直在参考以下页面 http://siddii.github.io/angular-timer/
但我收到以下错误。
错误:指令计时器的无效隔离范围定义:@?
谁能告诉我我错过了什么。
索引.html
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript" src="angular-timer.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<timer end-time="1451628000000">{{days}} days, {{hours}} hours, {{minutes}} minutes, {{seconds}} seconds.</timer>
</body>
</html>
应用程序.js
var appModule=angular.module('app', ['timer']);