新增角度。如果它沒有控制器運行良好,然後添加ng-controller指令到html標記並打破插值。使用Angular 1.6。我錯過了什麼?
的index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ngClassifieds</title>
</head>
<body ng-app="ngClassifieds" ng-controller="classifiedsCtrl">
<h1>{{ name }}</h1>
<!-- Scripts -->
<script src="node_modules/angular/angular.js"></script>
<script src="scripts/app.js"></script>
<script src="components/classifieds.ctr.js"></script>
</body>
</html>
app.js
angular.module("ngClassifieds", []);
classifieds.ctr.js
(function() {
"use strict"
angular
.module("ngClassifieds")
.controller("classifiedsCtrl", function($scope) {
$scope.name = "George Washington";
});
})();
路徑是正確的? – Sajeetharan
可能是 ..檢查你的CTRL文件路徑 – Amitesh
檢查過的文件路徑並不是問題所在。謝謝 – user3911617